Ignore:
Timestamp:
2013-03-03T00:10:46+01:00 (11 years ago)
Author:
Don-vip
Message:

fix #8404 - workaround for JDK bug 6322854 (crash when inserting password from clipboard corrupted by KeePass)

File:
1 edited

Legend:

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

    r5452 r5752  
    4040import org.openstreetmap.josm.gui.widgets.AbstractTextComponentValidator;
    4141import org.openstreetmap.josm.gui.widgets.HtmlPanel;
     42import org.openstreetmap.josm.gui.widgets.JosmPasswordField;
    4243import org.openstreetmap.josm.gui.widgets.SelectAllOnFocusGainedDecorator;
    4344import org.openstreetmap.josm.gui.widgets.VerticallyScrollablePanel;
     
    130131        gc.gridx = 1;
    131132        gc.weightx = 1.0;
    132         pnl.add(tfPassword = new JPasswordField(), gc);
     133        pnl.add(tfPassword = new JosmPasswordField(), gc);
    133134        SelectAllOnFocusGainedDecorator.decorate(tfPassword);
    134135        valPassword = new PasswordValidator(tfPassword);
Note: See TracChangeset for help on using the changeset viewer.