Changeset 4488 in josm


Ignore:
Timestamp:
Oct 4, 2011 1:00:33 PM (20 months ago)
Author:
Don-vip
Message:

see #6856 - Enable plugins to add actions in popup menus (PropertiesDialog, forgot this file in r4484)

File:
1 edited

Legend:

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

    r4134 r4488  
    9797    public ValidatorDialog validatorDialog; 
    9898    public SelectionListDialog selectionListDialog; 
     99    public PropertiesDialog propertiesDialog; 
     100     
    99101    /** 
    100102     * The panel list of all toggle dialog icons. To add new toggle dialog actions, use addToggleDialog 
     
    178180        LayerListDialog.createInstance(this); 
    179181        addToggleDialog(LayerListDialog.getInstance()); 
    180         addToggleDialog(new PropertiesDialog(this)); 
     182        addToggleDialog(propertiesDialog = new PropertiesDialog(this)); 
    181183        addToggleDialog(selectionListDialog = new SelectionListDialog()); 
    182184        addToggleDialog(relationListDialog = new RelationListDialog()); 
Note: See TracChangeset for help on using the changeset viewer.