Revision: 2459
          http://vexi.svn.sourceforge.net/vexi/?rev=2459&view=rev
Author:   clrg
Date:     2007-10-14 16:30:46 -0700 (Sun, 14 Oct 2007)

Log Message:
-----------
Fix frame resizes causing hangs - bug introduce by previous reflow() refactoring

Modified Paths:
--------------
    trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp

Modified: trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp
===================================================================
--- trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp  2007-10-14 22:45:00 UTC 
(rev 2458)
+++ trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp  2007-10-14 23:30:46 UTC 
(rev 2459)
@@ -399,7 +399,7 @@
 
     /** should only be invoked on the root box */
     public void reflow(int w, int h) {
-        if ((flags & REFLOW) == 0) return;
+        if ((flags & REFLOW) == 0 && w==width && h==height) return;
         constrain();
         tryResize(w, h);
         place();


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to