Ticket #11335: 11335.patch
File 11335.patch, 795 bytes (added by , 10 years ago) |
---|
-
src/org/openstreetmap/josm/gui/dialogs/properties/TagEditHelper.java
635 635 636 636 private void selectNumberOfTags() { 637 637 String s = JOptionPane.showInputDialog(this, tr("Please enter the number of recently added tags to display")); 638 if (s!=null) try { 638 if (s==null) { 639 return; 640 } 641 try { 639 642 int v = Integer.parseInt(s); 640 643 if (v>=0 && v<=MAX_LRU_TAGS_NUMBER) { 641 644 PROPERTY_RECENT_TAGS_NUMBER.put(v);