diff doodle/dia/layer_stack.d @ 88:100dd23c7bdf

Ch ch ch changes: * Handle SIGINT like a geek for now * GtkD Context has no destructor and hence it would seem, a memory leak * No more gtk_* C-function invocations * Configured my GtkD patches * (Comments)
author David Bryant <bagnose@gmail.com>
date Wed, 18 Aug 2010 23:51:43 +0930
parents cdd4fc728d94
children 467febed7367
line wrap: on
line diff
--- a/doodle/dia/layer_stack.d	Mon Aug 16 22:54:16 2010 +0930
+++ b/doodle/dia/layer_stack.d	Wed Aug 18 23:51:43 2010 +0930
@@ -13,7 +13,7 @@
         // Take the union of all layer bounds
         Rectangle bounds = Rectangle.DEFAULT;
         foreach (layer; _layers) { bounds = bounds | layer.bounds; }
-        assert(bounds.valid);
+        //assert(bounds.valid);
         return bounds;
     }