Changeset 16827 in josm for trunk/src


Ignore:
Timestamp:
2020-08-03T17:13:39+02:00 (5 years ago)
Author:
Klumbumbus
Message:

see #15240 - Change a lot png icons to svg:

Location:
trunk/src/org/openstreetmap/josm
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/SaveActionBase.java

    r16553 r16827  
    261261                    tr("Overwrite"), tr("Cancel"))
    262262                .setContent(tr("File exists. Overwrite?"))
    263                 .setButtonIcons("save_as", "cancel")
     263                .setButtonIcons("save", "cancel")
    264264                .showDialog()
    265265                .getValue() == 1;
  • trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java

    r16584 r16827  
    6666        super(
    6767                tr("Show Status Report"),
    68                 "clock",
     68                "misc/statusreport",
    6969                tr("Show status report with useful information that can be attached to bugs"),
    7070                Shortcut.registerShortcut("help:showstatusreport", tr("Help: {0}",
  • trunk/src/org/openstreetmap/josm/gui/dialogs/LayerListDialog.java

    r16438 r16827  
    540540                        g.setColor(c);
    541541                    }
    542                     g.fillOval(x, y + 1, getIconWidth(), getIconHeight() - 2);
     542                    g.fillOval(x, y + 2, getIconWidth(), getIconHeight() - 3);
    543543                }
    544544                super.paintIcon(comp, g, x, y);
  • trunk/src/org/openstreetmap/josm/gui/layer/gpx/ConvertFromMarkerLayerAction.java

    r14129 r16827  
    5151                }
    5252            } else {
    53                 Logging.warn("Invalid gpx.to-osm-mapping Einstein setting: expecting even number of entries");
     53                Logging.warn("Invalid gpx.to-osm-mapping advanced setting: expecting even number of entries");
    5454            }
    5555            ds.addPrimitive(node);
  • trunk/src/org/openstreetmap/josm/gui/preferences/display/GPXSettingsPanel.java

    r16630 r16827  
    111111        m.put("colormode.heatmap.colormap", 0);
    112112        m.put("colormode.heatmap.gain", 0);
    113         m.put("colormode.heatmap.line-extra", false); //Einstein only
     113        m.put("colormode.heatmap.line-extra", false); //Expert mode only
    114114        m.put("colormode.heatmap.lower-limit", 0);
    115115        m.put("colormode.heatmap.use-points", false);
    116         m.put("colormode.time.min-distance", 60); //Einstein only
     116        m.put("colormode.time.min-distance", 60); //Expert mode only
    117117        m.put("colormode.velocity.tune", 45);
    118118        m.put("lines", -1);
     
    131131        m.put("points.hdopcircle", false);
    132132        m.put("points.large", false);
    133         m.put("points.large.alpha", -1); //Einstein only
    134         m.put("points.large.size", 3); //Einstein only
     133        m.put("points.large.alpha", -1); //Expert mode only
     134        m.put("points.large.size", 3); //Expert mode only
    135135        return Collections.unmodifiableMap(m);
    136136    }
Note: See TracChangeset for help on using the changeset viewer.