Changeset 25715 in osm
- Timestamp:
- 2011-03-25T18:27:29+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/relcontext/src/relcontext/RelContextDialog.java
r25713 r25715 143 143 }); 144 144 downloadButton.setVisible(false); 145 chosenRelationPanel.setVisible(false); 145 if( Main.pref.getBoolean(PREF_PREFIX + ".hidetopline", false) ) 146 chosenRelationPanel.setVisible(false); 146 147 147 148 // [+][Multi] [X]Adm [X]Tags [X]1 … … 261 262 262 263 public void chosenRelationChanged( Relation oldRelation, Relation newRelation ) { 263 if( chosenRelationPanel != null )264 if( chosenRelationPanel != null && Main.pref.getBoolean(PREF_PREFIX + ".hidetopline", false) ) 264 265 chosenRelationPanel.setVisible(newRelation != null); 265 266 if( Main.main.getCurrentDataSet() != null )
Note:
See TracChangeset
for help on using the changeset viewer.