mirror of
https://github.com/DanilaFe/abacus
synced 2026-01-08 00:15:19 +00:00
Temporarily move components into a tabbed pane.
This commit is contained in:
@@ -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) -> {
|
||||
|
||||
Reference in New Issue
Block a user