diff mde/content/Content.d @ 179:1f9d00f392bd default tip

Fixed a bug where (non-resizible) widgets wouldn't get shrunk when minimal size decreases, meaning optional context menus are hiden properly now. Optimised when ServiceContentList.opCall is called, I think without breaking anything.
author Diggory Hardy <diggory.hardy@gmail.com>
date Tue, 15 Sep 2009 20:09:59 +0200
parents e45226d3deae
children
line wrap: on
line diff
--- a/mde/content/Content.d	Tue Sep 15 10:36:37 2009 +0200
+++ b/mde/content/Content.d	Tue Sep 15 20:09:59 2009 +0200
@@ -126,8 +126,10 @@
      * super();
      * --- */
     final void endEvent () {
-	foreach (dg; cb)
+	foreach (dg; cb) {
+	    debug logger.trace ("calling callback {}", dg.ptr);
 	    dg (this);
+	}
     }
     
     override char[] toString (uint i) {