Changeset 17078 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2020-10-01T00:28:28+02:00 (4 years ago)
Author:
Don-vip
Message:

fix #19794 - LatLonDialog: restore default action on Enter key stroke (regression from r16971)

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/LatLonDialog.java

    r16971 r17078  
    231231    private class LatLonValidator extends AbstractTextComponentValidator {
    232232        LatLonValidator(JTextComponent tc) {
    233             super(tc);
     233            super(tc, false);
    234234        }
    235235
     
    265265    private class EastNorthValidator extends AbstractTextComponentValidator {
    266266        EastNorthValidator(JTextComponent tc) {
    267             super(tc);
     267            super(tc, false);
    268268        }
    269269
  • trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java

    r16919 r17078  
    3333 * </ul>
    3434 *
    35  *
     35 * @since 2688
    3636 */
    3737public abstract class AbstractTextComponentValidator implements ActionListener, FocusListener, DocumentListener, PropertyChangeListener {
Note: See TracChangeset for help on using the changeset viewer.