Skip to content

Commit

Permalink
Allow for additional panels
Browse files Browse the repository at this point in the history
  • Loading branch information
fireduck64 committed Sep 9, 2019
1 parent 6b5cf5e commit f860b32
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions iceleaf-ui/src/IceLeaf.java
Expand Up @@ -85,6 +85,7 @@ public IceLeaf(NetworkParams params, Preferences prefs)
}



public class EnvSetup implements Runnable
{
public void run()
Expand Down Expand Up @@ -170,10 +171,17 @@ public void run()
tab_pane.add("Node", node_panel.getPanel());
tab_pane.add("Settings", settings_panel.getPanel());

setupMorePanels(tab_pane);

UIUtil.applyLook(f, ice_leaf);

}

}

public void setupMorePanels( JTabbedPane tab_pane)
{

}

}

0 comments on commit f860b32

Please sign in to comment.