Browse Source

Fixed a bug in Application.setTheme

svn changeset:365/svn branch:toolkit
tags/6.7.0.beta1
Joonas Lehtinen 17 years ago
parent
commit
17e2b652bf
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/itmill/toolkit/Application.java

+ 1
- 1
src/com/itmill/toolkit/Application.java View File

@@ -423,7 +423,7 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener
this.theme = theme;

// Ask windows to update themselves
for (Iterator i = getWindows().iterator(); i.hasNext();)
for (Iterator i = toBeUpdated.iterator(); i.hasNext();)
((Window) i.next()).requestRepaint();
}


Loading…
Cancel
Save