Changeset 30381 in osm for applications/editors/josm/plugins/ElevationProfile/src/org
- Timestamp:
- 2014-04-05T15:00:19+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java
r30344 r30381 48 48 49 49 private static final String EMPTY_DATA_STRING = "-"; 50 /**51 *52 */53 50 private static final long serialVersionUID = -868463893732535577L; 54 51 /* Elevation profile instance */ … … 184 181 rootPanel.add(trackPanel); 185 182 186 add(rootPanel, BorderLayout.PAGE_END); 183 JPanel mainPanel = new JPanel(new BorderLayout()); 184 mainPanel.add(rootPanel, BorderLayout.PAGE_END); 187 185 188 186 // add chart component 189 187 profPanel = new ElevationProfilePanel(null); 190 add(profPanel, BorderLayout.CENTER);188 mainPanel.add(profPanel, BorderLayout.CENTER); 191 189 profPanel.addComponentListener(this); 192 190 193 dock();191 createLayout(mainPanel, true, null); 194 192 } 195 193
Note:
See TracChangeset
for help on using the changeset viewer.