menu: disable AlwaysOnTop menu in mac
authorgiwoong.kim <giwoong.kim@samsung.com>
Mon, 5 Nov 2012 05:38:42 +0000 (14:38 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Mon, 5 Nov 2012 05:41:25 +0000 (14:41 +0900)
not supported feature

Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
tizen/src/skin/client/src/org/tizen/emulator/skin/EmulatorSkin.java

index c618d81..24fee91 100644 (file)
@@ -1894,6 +1894,8 @@ public class EmulatorSkin {
                new MenuItem( menu, SWT.SEPARATOR );
 
                /* Always on top menu */
+               if (!SwtUtil.isMacPlatform()) { /* temp */
+
                final MenuItem onTopItem = new MenuItem( menu, SWT.CHECK );
                onTopItem.setText( "&Always On Top" );
                onTopItem.setSelection( isOnTop );
@@ -1925,6 +1927,8 @@ public class EmulatorSkin {
                        }
                } );
 
+               }
+
                /* Rotate menu */
                final MenuItem rotateItem = new MenuItem( menu, SWT.CASCADE );
                rotateItem.setText( "&Rotate" );