Temporarily move components into a tabbed pane.

This commit is contained in:
Danila Fedorin 2017-07-26 15:35:59 -07:00
parent 0002f14e61
commit 626a2cb514
1 changed files with 4 additions and 2 deletions

View File

@ -163,8 +163,10 @@ public class Window extends JFrame {
sidePanel.add(numberSystemPanel, BorderLayout.NORTH);
sidePanel.add(functionSelectPanel, BorderLayout.SOUTH);
add(outputPanel, BorderLayout.CENTER);
add(sidePanel, BorderLayout.EAST);
JTabbedPane pane = new JTabbedPane();
pane.add("Calculator", outputPanel);
pane.add("Settings", sidePanel);
add(pane, BorderLayout.CENTER);
add(inputPanel, BorderLayout.SOUTH);
ActionListener actionListener = (event) -> {