Changeset 34179 in osm for applications/editors/josm/plugins/indoorhelper/src/views
- Timestamp:
- 2018-05-03T16:22:29+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper/src/views/ToolBoxView.java
r34135 r34179 286 286 GridBagConstraints.CENTER, GridBagConstraints.BOTH, 287 287 new Insets(0, 0, 5, 5), 0, 0)); 288 289 288 //---- preset3 ---- 290 289 preset3.setEnabled(false); … … 337 336 338 337 //---- applyButton ---- 339 applyButton.setText( "Apply");338 applyButton.setText(tr("Apply")); 340 339 applyButton.setToolTipText(tr("Add selected tags and/or relations to obeject.")); 341 340 applyButton.setEnabled(false); … … 506 505 } 507 506 507 508 508 /** 509 509 * Clears the text boxes and sets an empty String. 510 510 */ 511 511 public void resetUiElements() { 512 this.nameField.setText( tr(""));513 this.levelNameField.setText( tr(""));514 this.refField.setText( tr(""));515 this.repeatOnField.setText( tr(""));516 this.levelNameField.setText( tr(""));512 this.nameField.setText(""); 513 this.levelNameField.setText(""); 514 this.refField.setText(""); 515 this.repeatOnField.setText(""); 516 this.levelNameField.setText(""); 517 517 } 518 518
Note:
See TracChangeset
for help on using the changeset viewer.