Changeset 29952 in osm for applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap
- Timestamp:
- 2013-09-24T01:25:55+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfilePanel.java
r29949 r29952 72 72 addComponentListener(this); 73 73 addMouseMotionListener(this); 74 75 Font lFont = getFont().deriveFont(9.0f); 76 setFont(lFont); 74 77 } 75 78 … … 186 189 isPainting = true; 187 190 188 Font oldFont = getFont();189 Font lFont = getFont().deriveFont(9.0f);190 setFont(lFont);191 191 try { 192 192 super.paint(g); … … 219 219 } 220 220 } finally { 221 setFont(oldFont);222 221 isPainting = false; 223 222 } … … 548 547 return super.getToolTipText(); 549 548 } 550 551 552 553 549 }
Note:
See TracChangeset
for help on using the changeset viewer.