#752 Sound is not stopped when you change the selectin in he tag tree from SWF to e.g any shape fixed

This commit is contained in:
honfika@gmail.com
2014-12-15 22:33:13 +01:00
parent 9ea4f6c6b7
commit 5f4214dffd
5 changed files with 228 additions and 318 deletions

View File

@@ -61,6 +61,8 @@ public class FolderPreviewPanel extends JPanel {
private List<TreeItem> items;
private int selectedIndex = -1;
private boolean repaintQueued;
private int lastWidth;
private int lastHeight;
public Map<Integer, TreeItem> selectedItems = new HashMap<>();
@@ -217,8 +219,9 @@ public class FolderPreviewPanel extends JPanel {
}
}
Dimension size = getSize();
if (size.width != width || size.height != height) {
if (lastWidth != width || lastHeight != height) {
lastWidth = width;
lastHeight = height;
setSize(new Dimension(width, height));
}
}