Author: truesweetman
Date: Wed Aug 27 15:03:07 2008
New Revision: 2640

Modified:
   trunk/src/ca/sqlpower/architect/swingui/olap/UsageComponentUI.java

Log:
Fixed a bug where if you deleted an item in a pane, the UsageComponents connected to the pane did not repaint.

Modified: trunk/src/ca/sqlpower/architect/swingui/olap/UsageComponentUI.java
==============================================================================
--- trunk/src/ca/sqlpower/architect/swingui/olap/UsageComponentUI.java (original) +++ trunk/src/ca/sqlpower/architect/swingui/olap/UsageComponentUI.java Wed Aug 27 15:03:07 2008
@@ -64,6 +64,9 @@
if ("location".equals(evt.getPropertyName()) && evt.getSource() != c) {
                 revalidate();
                 c.repaint();
+ } else if ("bounds".equals(evt.getPropertyName()) && evt.getSource() != c) {
+                revalidate();
+                c.repaint();
             }
         }

Reply via email to