fix: UI adjustments
This commit is contained in:
parent
c11731d151
commit
8485c64419
|
@ -78,7 +78,7 @@ public class GameDetailsBackgroundPanel extends JPanel
|
|||
{
|
||||
this.model = model;
|
||||
this.scraperManager = new ScraperManager(model);
|
||||
this.setMinimumSize(new Dimension(1250, 800));
|
||||
this.setMinimumSize(new Dimension(1275, 800));
|
||||
cardLayout = new CardLayout();
|
||||
setLayout(cardLayout);
|
||||
add(getEmptyPanel(), EMPTY);
|
||||
|
|
|
@ -133,7 +133,7 @@ public class JoystickPanel extends JPanel
|
|||
String text = "Use port " + portnumber + " as Primary joystick";
|
||||
if (portnumber == 2)
|
||||
{
|
||||
text = text + " (Default setting, only change if required by game)";
|
||||
text = text + " (Default setting)";
|
||||
}
|
||||
primaryJoyCheckBox = new JCheckBox(text);
|
||||
primaryJoyCheckBox.addItemListener((e) -> model.setPrimary(primaryJoyCheckBox.isSelected()));
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue