Skip to content

Commit

Permalink
Fix account and proxy page layout
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Nov 25, 2023
1 parent bffbbfd commit b53b518
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public AccountPanel(GUIManager guiManager, GUIFrame parent, CardsContainer cards
var accountSettingsPanel = new JPanel();
accountSettingsPanel.setLayout(new GridLayout(0, 2));

GeneratedPanel.addComponents(this, cardsContainer.getByNamespace("account"), guiManager.getSettingsManager());
GeneratedPanel.addComponents(accountSettingsPanel, cardsContainer.getByNamespace("account"), guiManager.getSettingsManager());

accountOptionsPanel.add(accountSettingsPanel);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public ProxyPanel(GUIManager guiManager, GUIFrame parent, CardsContainer cardsCo
var proxySettingsPanel = new JPanel();
proxySettingsPanel.setLayout(new GridLayout(0, 2));

GeneratedPanel.addComponents(this, cardsContainer.getByNamespace("proxy"), guiManager.getSettingsManager());
GeneratedPanel.addComponents(proxySettingsPanel, cardsContainer.getByNamespace("proxy"), guiManager.getSettingsManager());

proxyOptionsPanel.add(proxySettingsPanel);

Expand Down

0 comments on commit b53b518

Please sign in to comment.