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


Ignore:
Timestamp:
2020-07-17T23:40:30+02:00 (4 years ago)
Author:
simon04
Message:

fix #19514 - IllegalStateException if double clicking with CTRL on items in the Command Stack Dialog

File:
1 edited

Legend:

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

    r14562 r16789  
    430430            } else if (!redoTree.isSelectionEmpty()) {
    431431                path = redoTree.getSelectionPath();
    432             } else
    433                 throw new IllegalStateException();
     432            } else {
     433                // see #19514 for a possible cause
     434                return;
     435            }
    434436
    435437            DataSet dataSet = MainApplication.getLayerManager().getEditDataSet();
Note: See TracChangeset for help on using the changeset viewer.