Skip to content

Commit

Permalink
Reorder buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Mar 5, 2024
1 parent 25106c9 commit 903441f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/mpo/dayon/assistant/gui/AssistantFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -245,18 +245,18 @@ private JTabbedPane createTabbedPane() {
sessionPanel.add(fitToScreenToggleButton);
sessionPanel.add(keepAspectRatioToggleButton);
sessionPanel.add(controlToggleButton);
sessionPanel.add(createButton(actions.getRemoteClipboardRequestAction()));
sessionPanel.add(createButton(actions.getRemoteClipboardSetAction()));
sessionPanel.add(windowsKeyToggleButton);
sessionPanel.add(ctrlKeyToggleButton);
sessionPanel.add(screenshotButton);
sessionPanel.add(createButton(actions.getRemoteClipboardRequestAction()));
sessionPanel.add(createButton(actions.getRemoteClipboardSetAction()));
sessionPanel.add(createButton(actions.getResetAction()));

JPanel settingsPanel = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0));
settingsPanel.setBorder(BorderFactory.createEmptyBorder(0, 8, 0, 0));
settingsPanel.add(createButton(actions.getNetworkConfigurationAction()));
settingsPanel.add(createButton(actions.getCaptureEngineConfigurationAction()));
settingsPanel.add(createButton(actions.getCompressionEngineConfigurationAction()));
settingsPanel.add(createButton(actions.getNetworkConfigurationAction()));
settingsPanel.add(languageSelection);

tabbedPane = new JTabbedPane();
Expand Down

0 comments on commit 903441f

Please sign in to comment.