Ignore:
Timestamp:
2009-12-09T21:25:40+01:00 (14 years ago)
Author:
Gubaer
Message:

fixed #4130: Chunked upload mode counter is wrong
fixed #4118: Upload dialog too complicated
fixed #4129: Hide the new "Upload data in one request/chunks/individually" behind an expanding "Upload method" box
fixed #2075: API 0.6: don't upload more than 50K edits at once
fixed #4044: Huge uploads never end [should be solved with chunked upload mode]
fixed #4110: Upload dialog spacing wrong
fixed #3386: Upload dialog has empty areas when the changeset doesn't include all of add/modify/delete operations
see #3369: bulk import helper [JOSM now supports multi changesets uploads]

See online help for more details.

Completes r2598

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorPanel.java

    r2512 r2599  
    77import java.awt.GridBagConstraints;
    88import java.awt.GridBagLayout;
     9import java.awt.Insets;
    910import java.awt.event.ActionEvent;
    1011import java.beans.PropertyChangeEvent;
     
    6970        //
    7071        AddAction addAction = new AddAction();
    71         pnl.add(new JButton(addAction));
     72        JButton btn;
     73        pnl.add(btn = new JButton(addAction));
     74        btn.setMargin(new Insets(0,0,0,0));
    7275        tagTable.addPropertyChangeListener(addAction);
    7376
     
    7780        tagTable.getSelectionModel().addListSelectionListener(deleteAction);
    7881        tagTable.addPropertyChangeListener(deleteAction);
    79         pnl.add(new JButton(deleteAction));
     82        pnl.add(btn = new JButton(deleteAction));
     83        btn.setMargin(new Insets(0,0,0,0));
    8084        return pnl;
    8185    }
Note: See TracChangeset for help on using the changeset viewer.