export-image: remove additional cancel popup
authorminkee.lee <minkee.lee@samsung.com>
Tue, 22 Dec 2015 07:39:23 +0000 (16:39 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Wed, 23 Dec 2015 05:04:52 +0000 (14:04 +0900)
If user cancels job, additional popup that shows message
such as "User canceled" is unnecessary.

Change-Id: Ic7aa0f367aaa25229aa6aec395b254cd60fc3264
Signed-off-by: minkee.lee <minkee.lee@samsung.com>
resource/strings/uimessages.properties
src/org/tizen/emulator/manager/ui/MenuHandling.java

index 2194136..8b56fa7 100644 (file)
@@ -47,7 +47,6 @@ MenuHandling.ExportDiglogTitle.0=Export 'Base Image' As
 MenuHandling.ExportAsCompressDialogTitle=Create new base image
 MenuHandling.ExportAsCompressDialogBody.0=Do you want to create compressed image?
 MenuHandling.ExportAsCompressDialogBody.1=(It takes longer time but size is smaller)
-MenuHandling.ExportAsUserCancel=User canceled.
 MenuHandling.ResetError.0=Not allowed to reset active VMs.
 MenuHandling.ResetError.1=] is running now...
 MenuHandling.ResetInfo.0=This VM will be formatted.
index 18fd016..1a29f91 100644 (file)
@@ -143,8 +143,8 @@ public class MenuHandling {
                        useCompress = false;
 
                } else {
-                       throw new VMWorkerException(
-                                       Messages.getString("MenuHandling.ExportAsUserCancel"));
+                       // cancel
+                       return false;
                }