- Timestamp:
- 2016-05-18T19:31:26+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/OverpassDownloadAction.java
r10250 r10252 120 120 private static final class OverpassDownloadDialog extends DownloadDialog { 121 121 122 private final HistoryComboBox overpassWizard = new HistoryComboBox();123 private final JosmTextArea overpassQuery = new JosmTextArea("", 8, 80);122 private HistoryComboBox overpassWizard; 123 private JosmTextArea overpassQuery; 124 124 private static OverpassDownloadDialog instance; 125 125 private static final CollectionProperty OVERPASS_WIZARD_HISTORY = new CollectionProperty("download.overpass.wizard", … … 151 151 152 152 final String tooltip = tr("Builds an Overpass query using the Overpass Turbo query wizard"); 153 overpassWizard = new HistoryComboBox(); 153 154 overpassWizard.setToolTipText(tooltip); 154 155 overpassWizard.getEditorComponent().addFocusListener(disableActionsFocusListener); … … 177 178 pnl.add(overpassWizard, GBC.eol().fill(GBC.HORIZONTAL)); 178 179 180 overpassQuery = new JosmTextArea("", 8, 80); 179 181 overpassQuery.setFont(GuiHelper.getMonospacedFont(overpassQuery)); 180 182 overpassQuery.addFocusListener(disableActionsFocusListener);
Note:
See TracChangeset
for help on using the changeset viewer.