diff mde/gui/widget/Floating.d @ 130:c5c38eaadb64

Changed how sizability is set for parents: can require all sub-widgets resizable or only one to set parent resizable. Ifaces.IParentWidget.SIZABILITY controlling parent sizability. TextWidget no longer vertically resizable (since multi-line editing is not supported).
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 17 Jan 2009 16:11:26 +0000
parents c9843fbaac88
children 9cff74f68b84
line wrap: on
line diff
--- a/mde/gui/widget/Floating.d	Thu Jan 15 16:52:46 2009 +0000
+++ b/mde/gui/widget/Floating.d	Sat Jan 17 16:11:26 2009 +0000
@@ -104,8 +104,12 @@
         }
     }
     
-    override bool isWSizable () {    return true;    }
-    override bool isHSizable () {    return true;    }
+    override bool isWSizable () {
+        return true;
+    }
+    override bool isHSizable () {
+        return true;
+    }
     
     override void setPosition (wdim nx, wdim ny) {
         x = nx;