Ignore:
Timestamp:
2010-10-22T20:28:23+02:00 (14 years ago)
Author:
oliverw
Message:

Show name of profile/GPX file in title instead of plot area.

Location:
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java

    r23749 r23750  
    281281         */
    282282        private void updateView() {
     283                if (profile == null) { // emergency exit
     284                        setTitle(String.format("%s: (No data)", tr("Elevation Profile")));
     285                        return;
     286                }
     287               
     288                // Show name of profile in title
     289                setTitle(String.format("%s: %s", tr("Elevation Profile"), profile.getName()));
     290               
    283291                // TODO: Offer also ft here
    284292                if (profile.hasElevationData()) {
  • applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfilePanel.java

    r23721 r23750  
    186186                                drawProfile(g);
    187187                                drawElevationLines(g);
    188                                 drawHCenteredString(profile.getName(), getPlotHCenter(),
    189                                                 getPlotTop() + 2, g);
    190188                        } else {
    191189                                drawAlignedString(tr("(No elevation data)"), getPlotHCenter(),
Note: See TracChangeset for help on using the changeset viewer.