Ignore:
Timestamp:
17.06.2009 10:04:22 (3 years ago)
Author:
stoecker
Message:

remove all these ugly tab stops introduced in the last half year

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java

    r1599 r1677  
    5353     */ 
    5454    private JList displaylist = new JList(list); 
    55      
     55 
    5656    private SideButton sbEdit = new SideButton(marktr("Edit"), "edit", "Selection", tr( "Open an editor for the selected relation"), new ActionListener() { 
    5757        public void actionPerformed(ActionEvent e) { 
     
    6262        } 
    6363    }); 
    64      
     64 
    6565    private SideButton sbDel = new SideButton(marktr("Delete"), "delete", "Selection", tr("Delete the selected relation"), new ActionListener() { 
    6666        public void actionPerformed(ActionEvent e) { 
     
    6868            if (toDelete == null) 
    6969                return; 
    70              
     70 
    7171            Main.main.undoRedo.add( 
    7272                    new DeleteCommand(Collections.singleton(toDelete))); 
     
    102102        Layer.listeners.add(this); 
    103103        add(buttonPanel, BorderLayout.SOUTH); 
    104          
     104 
    105105        displaylist.addListSelectionListener(new ListSelectionListener() { 
    106106            public void valueChanged(ListSelectionEvent e) { 
     
    130130            setTitle(tr("Relations"), false); 
    131131        } 
    132          
     132 
    133133        sbEdit.setEnabled(list.size() > 0); 
    134134        sbDel.setEnabled(list.size() > 0); 
     
    185185        displaylist.removeListSelectionListener(listener); 
    186186    } 
    187      
     187 
    188188    /** 
    189189     * @return The selected relation in the list 
Note: See TracChangeset for help on using the changeset viewer.