Changeset 9804 in josm for trunk/src/org/openstreetmap/josm/gui/layer/gpx/DownloadAlongPanel.java
- Timestamp:
- 2016-02-14T23:11:00+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/gpx/DownloadAlongPanel.java
r8672 r9804 5 5 6 6 import java.awt.Dimension; 7 import java.awt.GraphicsEnvironment; 7 8 import java.awt.GridBagLayout; 8 9 … … 185 186 }); 186 187 187 int ret = HelpAwareOptionPane.showOptionDialog(Main.parent, this, title, 188 JOptionPane.QUESTION_MESSAGE, null, options, options[0], helpTopic); 188 int ret = 0; 189 if (!GraphicsEnvironment.isHeadless()) { 190 ret = HelpAwareOptionPane.showOptionDialog(Main.parent, this, title, 191 JOptionPane.QUESTION_MESSAGE, null, options, options[0], helpTopic); 192 } 189 193 if (0 == ret) { 190 194 rememberSettings();
Note:
See TracChangeset
for help on using the changeset viewer.
