Changeset 29430 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/CalibrationLayer.java
- Timestamp:
- 2013-03-29T20:04:22+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/CalibrationLayer.java
r29429 r29430 41 41 @Override 42 42 public void paint( Graphics2D g, MapView mv, Bounds box ) { 43 g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); 43 44 Stroke oldStroke = g.getStroke(); 44 45 g.setColor(color); … … 98 99 @Override 99 100 public String getToolTipText() { 100 if(obj.isDeprecated()) 101 return tr("A deprecated calibration of type {0} by {1}", 102 OffsetInfoAction.getGeometryType(obj), obj.getAuthor()); 101 if( obj.isDeprecated() ) 102 return tr("A deprecated calibration {0} by {1}", OffsetInfoAction.getGeometryType(obj), obj.getAuthor()); 103 103 else 104 return tr("A calibration of type {0} by {1}", 105 OffsetInfoAction.getGeometryType(obj), obj.getAuthor()); 104 return tr("A calibration {0} by {1}", OffsetInfoAction.getGeometryType(obj), obj.getAuthor()); 106 105 } 107 106
Note:
See TracChangeset
for help on using the changeset viewer.