From: minkee.lee Date: Tue, 22 Dec 2015 07:39:23 +0000 (+0900) Subject: export-image: remove additional cancel popup X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=043cf4b2180adb8a3698ac03e8b766e8fcdd3168;p=sdk%2Femulator%2Femulator-manager.git export-image: remove additional cancel popup If user cancels job, additional popup that shows message such as "User canceled" is unnecessary. Change-Id: Ic7aa0f367aaa25229aa6aec395b254cd60fc3264 Signed-off-by: minkee.lee --- diff --git a/resource/strings/uimessages.properties b/resource/strings/uimessages.properties index 2194136..8b56fa7 100644 --- a/resource/strings/uimessages.properties +++ b/resource/strings/uimessages.properties @@ -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. diff --git a/src/org/tizen/emulator/manager/ui/MenuHandling.java b/src/org/tizen/emulator/manager/ui/MenuHandling.java index 18fd016..1a29f91 100644 --- a/src/org/tizen/emulator/manager/ui/MenuHandling.java +++ b/src/org/tizen/emulator/manager/ui/MenuHandling.java @@ -143,8 +143,8 @@ public class MenuHandling { useCompress = false; } else { - throw new VMWorkerException( - Messages.getString("MenuHandling.ExportAsUserCancel")); + // cancel + return false; }