Skip to content

Commit

Permalink
Fixed issue with updating datatypes.
Browse files Browse the repository at this point in the history
  • Loading branch information
eamonnmag committed Mar 11, 2014
1 parent 888ed1f commit d3f12ca
Show file tree
Hide file tree
Showing 2 changed files with 172 additions and 176 deletions.
Expand Up @@ -1367,21 +1367,17 @@ private boolean checkConflictingTables(String tableType, String tableName, Strin
* @param newPage - JLayeredPane to change to
*/
public void setCurrentPage(final JLayeredPane newPage) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
if (currentPage == null) {
currentPage = newPage;
} else {
remove(currentPage);
currentPage = newPage;
}

add(currentPage, BorderLayout.CENTER);
repaint();
validate();
}
});
if (currentPage == null) {
currentPage = newPage;
} else {
remove(currentPage);
currentPage = newPage;
}

add(currentPage, BorderLayout.CENTER);
repaint();
validate();
}

public ISAcreatorConfigurator getApplicationContainer() {
Expand Down

0 comments on commit d3f12ca

Please sign in to comment.