Changeset 2447 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2009-11-13T12:27:52+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java
r2358 r2447 364 364 protected String getUploadComment() { 365 365 switch(southTabbedPane.getSelectedIndex()) { 366 367 368 369 370 366 case 0: 367 return pnlChangesetSelection.getUploadComment(); 368 case 1: 369 TagModel tm = tagEditorPanel.getModel().get("comment"); 370 return tm == null? "" : tm.getValue(); 371 371 } 372 372 return ""; … … 953 953 } 954 954 tagEditorPanel.getModel().initFromPrimitive(cs); 955 if (cs.get("comment") != null) { 956 cmt.setText(cs.get("comment")); 957 } 955 958 } 956 959 }
Note:
See TracChangeset
for help on using the changeset viewer.