Changeset 6270 in josm
- Timestamp:
- 2013-09-30T02:09:13+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/LayerListDialog.java
r6086 r6270 449 449 } 450 450 451 /** 452 * Constructs a new {@code ShowHideLayerAction}. 453 */ 451 454 public ShowHideLayerAction() { 452 455 this(true); … … 640 643 } 641 644 645 /** 646 * Constructs a new {@code ActivateLayerAction}. 647 */ 642 648 public ActivateLayerAction() { 643 649 putValue(NAME, tr("Activate")); … … 744 750 } 745 751 752 /** 753 * Constructs a new {@code MergeAction}. 754 */ 746 755 public MergeAction() { 747 756 putValue(NAME, tr("Merge")); … … 811 820 } 812 821 822 /** 823 * Constructs a new {@code DuplicateAction}. 824 */ 813 825 public DuplicateAction() { 814 826 putValue(NAME, tr("Duplicate")); … … 1021 1033 1022 1034 class PopupMenuHandler extends PopupMenuLauncher { 1023 @Override public void launch(MouseEvent evt) {1035 @Override public void showMenu(MouseEvent evt) { 1024 1036 Layer layer = getModel().getLayer(layerList.getSelectedRow()); 1025 1037 menu = new LayerListPopup(getModel().getSelectedLayers(), layer); 1026 super. launch(evt);1038 super.showMenu(evt); 1027 1039 } 1028 1040 }
Note:
See TracChangeset
for help on using the changeset viewer.