From: giwoong.kim Date: Mon, 11 Mar 2013 08:00:37 +0000 (+0900) Subject: skin: modified VM shell name X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~1053^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ef226f2d251b2dc30bc11d64a9f431f350b6460;p=sdk%2Femulator%2Fqemu.git skin: modified VM shell name The name in launcher or taskbar should have a "Emulator - " prefix in order to be clear for the user. Signed-off-by: GiWoong Kim --- diff --git a/tizen/src/skin/client/src/org/tizen/emulator/skin/layout/GeneralPurposeSkinComposer.java b/tizen/src/skin/client/src/org/tizen/emulator/skin/layout/GeneralPurposeSkinComposer.java index 7454059a79..fe317dfb56 100644 --- a/tizen/src/skin/client/src/org/tizen/emulator/skin/layout/GeneralPurposeSkinComposer.java +++ b/tizen/src/skin/client/src/org/tizen/emulator/skin/layout/GeneralPurposeSkinComposer.java @@ -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)); diff --git a/tizen/src/skin/client/src/org/tizen/emulator/skin/layout/PhoneShapeSkinComposer.java b/tizen/src/skin/client/src/org/tizen/emulator/skin/layout/PhoneShapeSkinComposer.java index 7fd6b9ec33..21eeeea071 100644 --- a/tizen/src/skin/client/src/org/tizen/emulator/skin/layout/PhoneShapeSkinComposer.java +++ b/tizen/src/skin/client/src/org/tizen/emulator/skin/layout/PhoneShapeSkinComposer.java @@ -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));