ImageEditView.st
changeset 3859 56eadb83df83
parent 3847 c09d45071125
child 3865 f7aa4c8d62f7
--- a/ImageEditView.st	Mon Nov 16 14:34:22 2009 +0100
+++ b/ImageEditView.st	Tue Nov 17 14:29:02 2009 +0100
@@ -2460,8 +2460,8 @@
     ].
 
     windowGroup withExecuteCursorDo:[
-        Object errorSignal handle:[:ex|
-            self warn: ex errorString.
+        Error handle:[:ex|
+            (self confirm:(ex errorString,'\\Debug?' withCRs)) ifTrue:[ ex reject ].
             ^ false                                 
         ] do: [   
             |category imageStoreStream sel mthd imageKey|
@@ -2636,11 +2636,11 @@
 !ImageEditView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ImageEditView.st,v 1.238 2009-11-05 13:06:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ImageEditView.st,v 1.239 2009-11-17 13:29:02 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/ImageEditView.st,v 1.238 2009-11-05 13:06:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ImageEditView.st,v 1.239 2009-11-17 13:29:02 cg Exp $'
 ! !
 
 ImageEditView initialize!