Changeset 14880 in josm


Ignore:
Timestamp:
2019-03-12T00:36:05+01:00 (5 years ago)
Author:
Don-vip
Message:

fix #17448 - Same buttons in Upload Selection as in other upload dialogs (patch by Hb---)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/io/UploadSelectionDialog.java

    r14658 r14880  
    263263    class CancelAction extends AbstractAction {
    264264        CancelAction() {
    265             putValue(Action.SHORT_DESCRIPTION, tr("Cancel uploading"));
    266265            putValue(Action.NAME, tr("Cancel"));
    267266            new ImageProvider("cancel").getResource().attachImageIcon(this);
     
    279278    class ContinueAction extends AbstractAction implements ListSelectionListener {
    280279        ContinueAction() {
    281             putValue(Action.SHORT_DESCRIPTION, tr("Continue uploading"));
    282280            putValue(Action.NAME, tr("Continue"));
    283             new ImageProvider("upload").getResource().attachImageIcon(this);
     281            new ImageProvider("ok").getResource().attachImageIcon(this);
    284282            updateEnabledState();
    285283        }
Note: See TracChangeset for help on using the changeset viewer.