No debugger when there are unavailable classes in the widget gallery
authorStefan Vogel <sv@exept.de>
Fri, 11 Jan 2008 20:55:14 +0100
changeset 2242 63b5fdc3c8a3
parent 2241 19912f2b3ff9
child 2243 d6fec8c8e9ce
No debugger when there are unavailable classes in the widget gallery
UIGalleryView.st
--- a/UIGalleryView.st	Fri Jan 11 20:46:26 2008 +0100
+++ b/UIGalleryView.st	Fri Jan 11 20:55:14 2008 +0100
@@ -248,7 +248,12 @@
         ]
     ].
 "/    self withWaitCursorDo:[
-        canvas specification:specification.
+        [
+            canvas specification:specification.
+        ] on:NotFoundError do:[:ex|
+            Transcript showCR:ex description.
+            ex proceed.
+        ]
 "/    ]
 !