ImageEditView.st
changeset 5600 eb6048aada56
parent 5594 26e8562cdf99
child 5604 0cfb9a0ea4eb
--- a/ImageEditView.st	Wed Sep 13 10:16:04 2017 +0200
+++ b/ImageEditView.st	Wed Sep 13 10:16:19 2017 +0200
@@ -3542,9 +3542,14 @@
         ].
         Dialog warn:msg.
     ] do:[   
-        Image informationLostQuerySignal handle:[:ex|
-            "/ should make those warnings visible ...
-            (self confirm:(ex errorString , '\\Save anyway ?') withCRs) ifTrue:[
+        Image informationLostQuerySignal handle:[:ex |
+            |question|
+
+            question := '\\Save anyway ?'.
+            ex creator == Image noMaskButAlphaSupportedQuerySignal ifTrue:[
+                question := '\\Convert and save with alpha channel ?'.
+            ].
+            (self confirm:(ex errorString , question) withCRs) ifTrue:[
                 ex proceed.
             ]
         ] do:[   
@@ -3603,7 +3608,7 @@
         ]
     ]
 
-    "Modified: / 27-07-2012 / 09:45:49 / cg"
+    "Modified: / 13-09-2017 / 09:49:46 / cg"
 !
 
 saveAs