Ignore:
Timestamp:
2013-03-29T20:04:22+01:00 (12 years ago)
Author:
zverik
Message:

string fixes, button and menu update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagery_offset_db/src/iodb/CalibrationLayer.java

    r29429 r29430  
    4141    @Override
    4242    public void paint( Graphics2D g, MapView mv, Bounds box ) {
     43        g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    4344        Stroke oldStroke = g.getStroke();
    4445        g.setColor(color);
     
    9899    @Override
    99100    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());
    103103        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());
    106105    }
    107106
Note: See TracChangeset for help on using the changeset viewer.