Skip to content

Commit

Permalink
コメントのエンコーディングを直した
Browse files Browse the repository at this point in the history
  • Loading branch information
nonowarn committed Aug 21, 2011
1 parent a1edd32 commit 6f9de6a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src_mac/com/group_finity/mascot/mac/NativeFactoryImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ public TranslucentWindow newTransparentWindow() {

JRootPane rootPane = transcluentWindow.asJWindow().getRootPane();

// ウィンドウの影がずれるので、影を描画しないようにする
// ウィンドウの影がずれるので、影を描画しないようにする
rootPane.putClientProperty("Window.shadow", Boolean.FALSE);

// 実行時の warning を消す
// 実行時の warning を消す
rootPane.putClientProperty("apple.awt.draggableWindowBackground", Boolean.TRUE);

return new TranslucentWindow() {
// パフォーマンスのためにラップしたクラスを使う
// updateImage() がボトルネックになっていたので、
// image が変わった時だけ呼ぶようにする
// パフォーマンスのためにラップしたクラスを使う
// updateImage() がボトルネックになっていたので、
// image が変わった時だけ呼ぶようにする

private boolean imageChanged = false;
private NativeImage oldImage = null;
Expand Down

0 comments on commit 6f9de6a

Please sign in to comment.