Changeset 19447 in josm


Ignore:
Timestamp:
2025-11-19T13:34:06+01:00 (44 hours ago)
Author:
GerdP
Message:

fix #6556: Preferences "OK", "Cancel", & "Help" buttons unclickable on Netbooks because of Screen Resolution

  • reduce minimum dialog size
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/PreferenceDialog.java

    r17265 r19447  
    5555        super(GuiHelper.getFrameForComponent(parent), tr("Preferences"), ModalityType.DOCUMENT_MODAL);
    5656        build();
    57         this.setMinimumSize(new Dimension(800, 600));
     57        this.setMinimumSize(new Dimension(400, 300));
    5858        // set the maximum width to the current screen. If the dialog is opened on a
    5959        // smaller screen than before, this will reset the stored preference.
Note: See TracChangeset for help on using the changeset viewer.