Fixed Unpin all context menu not clearing pins properly

This commit is contained in:
Jindra Petřík
2022-11-27 08:52:48 +01:00
parent 231b4e7d3c
commit 7ed6ea1f9a
2 changed files with 2 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ All notable changes to this project will be documented in this file.
- All SWF classes inside DoABC tags in the taglist view
- Exception on package selection inside DoABC tag on taglist view
- [#1892] AS3 - Package internal custom namespaces
- Unpin all context menu not clearing pins properly
## [17.0.2] - 2022-11-22
### Fixed

View File

@@ -568,7 +568,7 @@ public class TagTreeContextMenu extends JPopupMenu {
unpinAllMenuItem.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
mainPanel.clearPins();
mainPanel.destroyPins();
}
});
add(unpinAllMenuItem);