Ignore:
Timestamp:
2020-06-29T11:30:41+02:00 (5 years ago)
Author:
stoecker
Message:

remove image extensions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportDialog.java

    r34520 r35499  
    2626                true);
    2727        contentInsets = new Insets(15, 15, 5, 15);
    28         setButtonIcons(new String[] { "ok.png", "cancel.png" });
    29        
     28        setButtonIcons(new String[] { "ok", "cancel" });
    3029
    3130        final JPanel panel = new JPanel(new GridBagLayout());
     
    3736        pscale.add(new JLabel(tr("m")),GBC.std().insets(10, 0, 0, 0));
    3837        panel.add(pscale,GBC.eop().fill(GBC.HORIZONTAL));
    39        
     38
    4039        final JLabel label = new JLabel("Curve steps:");
    4140        panel.add(label, GBC.std());
    4241        label.setLabelFor(tsteps);
    4342        panel.add(tsteps, GBC.eol().fill(GBC.HORIZONTAL));
    44        
     43
    4544        tsnum.setValue(Settings.getScaleNumerator());
    4645        tsdiv.setValue(Settings.getScaleDivisor());
     
    5150        setVisible(true);
    5251    }
    53    
     52
    5453    public double getScaleNumerator() {
    5554        try {
     
    5958        }
    6059    }
    61    
     60
    6261    public double getScaleDivisor() {
    6362        try {
     
    8281    }
    8382
    84    
     83
    8584    public void saveSettings() {
    8685        Settings.setScaleNumerator(getScaleNumerator());
Note: See TracChangeset for help on using the changeset viewer.