Ignore:
Timestamp:
2010-08-30T23:22:28+02:00 (14 years ago)
Author:
bastiK
Message:

fixed #4632 - Button Help puts help window under main window

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java

    r3385 r3501  
    212212     */
    213213    public OAuthAuthorizationWizard(String apiUrl) throws IllegalArgumentException {
    214         super(JOptionPane.getFrameForComponent(Main.parent),true /* modal */);
     214        super(JOptionPane.getFrameForComponent(Main.parent), ModalityType.DOCUMENT_MODAL);
    215215        CheckParameterUtil.ensureParameterNotNull(apiUrl, "apiUrl");
    216216        build();
     
    226226     */
    227227    public OAuthAuthorizationWizard(Component parent, String apiUrl) {
    228         super(JOptionPane.getFrameForComponent(parent),true /* modal */);
     228        super(JOptionPane.getFrameForComponent(parent), ModalityType.DOCUMENT_MODAL);
    229229        CheckParameterUtil.ensureParameterNotNull(apiUrl, "apiUrl");
    230230        build();
Note: See TracChangeset for help on using the changeset viewer.