Ticket #19794: 19794.patch

File 19794.patch, 1.4 KB (added by GerdP, 4 years ago)

this patch fixes this, not sure if this is the right way to do it

  • src/org/openstreetmap/josm/gui/dialogs/LatLonDialog.java

     
    55
    66import java.awt.Component;
    77import java.awt.GridBagLayout;
     8import java.awt.event.ActionEvent;
    89import java.awt.event.FocusEvent;
    910import java.awt.event.FocusListener;
    1011import java.awt.event.WindowAdapter;
     
    257258        }
    258259
    259260        @Override
     261        public void actionPerformed(ActionEvent arg0) {
     262            super.actionPerformed(arg0);
     263            if (buttons != null && !buttons.isEmpty() && buttons.get(0).isEnabled()) {
     264                buttons.get(0).getAction().actionPerformed(arg0);
     265            }
     266        }
     267
     268        @Override
    260269        public boolean isValid() {
    261270            throw new UnsupportedOperationException();
    262271        }
     
    288297        }
    289298
    290299        @Override
     300        public void actionPerformed(ActionEvent arg0) {
     301            super.actionPerformed(arg0);
     302            if (buttons != null && !buttons.isEmpty() && buttons.get(0).isEnabled()) {
     303                buttons.get(0).getAction().actionPerformed(arg0);
     304            }
     305        }
     306
     307        @Override
    291308        public boolean isValid() {
    292309            throw new UnsupportedOperationException();
    293310        }