skin: modified VM shell name
authorgiwoong.kim <giwoong.kim@samsung.com>
Mon, 11 Mar 2013 08:00:37 +0000 (17:00 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Mon, 11 Mar 2013 08:00:37 +0000 (17:00 +0900)
The name in launcher or taskbar should have a
"Emulator - " prefix in order to be clear for the
user.

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

index 7454059a799acae90a9084ffe433c4cbb6b92bd2..fe317dfb56db0037a3dbdcf2b59fd608fb3a2eb7 100644 (file)
@@ -142,7 +142,7 @@ public class GeneralPurposeSkinComposer implements ISkinComposer {
                shell.setLocation(x, y);
 
                String emulatorName = SkinUtil.makeEmulatorName(config);
-               shell.setText(emulatorName);
+               shell.setText("Emulator - " + emulatorName);
 
                displayCanvas.setBackground(
                                shell.getDisplay().getSystemColor(SWT.COLOR_BLACK));
index 7fd6b9ec336ea48539870bf38ef5ebb1cdbbc039..21eeeea07130ff05e390f9679b7079692dee7723 100644 (file)
@@ -136,7 +136,7 @@ public class PhoneShapeSkinComposer implements ISkinComposer {
                shell.setLocation(x, y);
 
                String emulatorName = SkinUtil.makeEmulatorName(config);
-               shell.setText(emulatorName);
+               shell.setText("Emulator - " + emulatorName);
 
                lcdCanvas.setBackground(shell.getDisplay().getSystemColor(SWT.COLOR_BLACK));