[Title] emulator-manager : fix bug
authorjihye kim <jihye1128.kim@samsung.com>
Tue, 25 Jun 2013 03:14:48 +0000 (12:14 +0900)
committerjihye kim <jihye1128.kim@samsung.com>
Tue, 25 Jun 2013 05:22:40 +0000 (14:22 +0900)
[Desc.] create button's size set 0 while create VM.
add '&' for background process
delete 3button kernel option
[Issue] N/A

Change-Id: I59ae012e06a4abf307417cd1879a1065dba25472
Signed-off-by: jihye kim <jihye1128.kim@samsung.com>
package/changelog
src/org/tizen/emulator/manager/ui/list/ItemListVew.java
src/org/tizen/emulator/manager/vms/Launcher.java
supplement/emulator-manager-mac.sh
supplement/emulator-manager.sh

index 5e4b9b8..37fc021 100644 (file)
@@ -1,5 +1,8 @@
 * 2.2.7
 - bug fix - empty view error in mac os
+- add '&' for background process
+- create button size 0 while create emulator
+- delete '3button' kernel option
 == jihye kim <jihye1128.kim@samsung.com> 2013-06-24
 
 * 2.2.6
index 5e25e3f..c887654 100644 (file)
@@ -132,6 +132,10 @@ public class ItemListVew extends AbstractListView {
        public void drawVMList(BaseImage base, int select, boolean isCreate) {
                if (createButton != null) {
                        if (base.getVmsList().isEmpty()) {
+                               FormData data = new FormData();
+                               data.width = 0;
+                               data.height = 0;
+                               createButton.setLayoutData(data);
                                createButton.setEnabled(false);
                        } else {
                                createButton.dispose();
index f448e54..6f8a566 100644 (file)
@@ -167,11 +167,13 @@ public class Launcher {
                        if(EmulatorManager.isLinux() && isFileshare) {
                                kernelOption += " virtio-9p";
                        }
+                       /*
                        if(property.getPropertyValue().skin != null && property.getPropertyValue().skin.getButtonType() == SKIN_BUTTON_TYPE.THREE_BUTTON_TYPE) {
                                kernelOption += " platform_feature=3btn";
                        } else {
                                kernelOption += " platform_feature=1btn";
                        }
+                       */
 
                        cmd.add(kernelOption);
 
index b88df7c..b197b43 100755 (executable)
@@ -20,7 +20,7 @@ current_emulmgr="$current_path/emulator-manager.jar"
 
 if [ -f "$current_emulmgr" ]
 then
-java -XstartOnFirstThread -jar "$current_emulmgr" "$@"
+java -XstartOnFirstThread -jar "$current_emulmgr" "$@" &
 else
-java -XstartOnFirstThread -jar "$em_path" "$@"
+java -XstartOnFirstThread -jar "$em_path" "$@" &
 fi
index d314bc1..5984387 100755 (executable)
@@ -20,7 +20,7 @@ current_emulmgr="$current_path/emulator-manager.jar"
 
 if [ -f "$current_emulmgr" ]
 then
-java -jar "$current_emulmgr" "$@"
+java -jar "$current_emulmgr" "$@" &
 else
-java -jar "$em_path" "$@"
+java -jar "$em_path" "$@" &
 fi