Skip to content

Commit

Permalink
Allow UI modules to modify frame
Browse files Browse the repository at this point in the history
  • Loading branch information
fireduck64 committed Jan 24, 2020
1 parent 26be18b commit 3623868
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iceleaf-ui/src/IceLeaf.java
Expand Up @@ -171,15 +171,15 @@ public void run()
tab_pane.add("Node", node_panel.getPanel());
tab_pane.add("Settings", settings_panel.getPanel());

setupMorePanels(tab_pane);
setupMorePanels(tab_pane, f);

UIUtil.applyLook(f, ice_leaf);

}

}

public void setupMorePanels( JTabbedPane tab_pane)
public void setupMorePanels( JTabbedPane tab_pane, JFrame frame)
{

}
Expand Down

0 comments on commit 3623868

Please sign in to comment.