# HG changeset patch # User Stefan Vogel # Date 1200081314 -3600 # Node ID 63b5fdc3c8a3df2498599da20b635f9ea9cf84fe # Parent 19912f2b3ff9400a23ccfa1d147faa99c1591e0b No debugger when there are unavailable classes in the widget gallery diff -r 19912f2b3ff9 -r 63b5fdc3c8a3 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. + ] "/ ] !