Browse Source

Make sure the table component is updated.

This was a problem under Windows.
master
Bruno Barbieri 11 years ago
parent
commit
95c15c9983
  1. 4
      src/gui/Main.java

4
src/gui/Main.java

@ -624,6 +624,10 @@ public class Main implements ListSelectionListener, ActionListener,
{ {
frame.getRootPane().putClientProperty("Window.documentModified", frame.getRootPane().putClientProperty("Window.documentModified",
Boolean.valueOf(status)); Boolean.valueOf(status));
// Make sure the table component is updated
table.repaint();
table.revalidate();
} }
// we implement the LanguageModel interface because we want to intercept the // we implement the LanguageModel interface because we want to intercept the

Loading…
Cancel
Save