Hidden not working buttons for next/prev text tag in tag list view

This commit is contained in:
Jindra Petřík
2022-10-30 13:43:01 +01:00
parent 9471266ebf
commit 6234e7daef
2 changed files with 8 additions and 15 deletions

View File

@@ -3113,12 +3113,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
}
public boolean previousTag() {
JTree tree = null;
if (getCurrentView() == VIEW_RESOURCES) {
tree = tagTree;
} else if (getCurrentView() == VIEW_TAGLIST) {
tree = tagTree;
}
JTree tree = getCurrentTree();
if (tree != null) {
if (tree.getSelectionRows().length > 0) {
@@ -3136,12 +3131,8 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
}
public boolean nextTag() {
JTree tree = null;
if (getCurrentView() == VIEW_RESOURCES) {
tree = tagTree;
} else if (getCurrentView() == VIEW_TAGLIST) {
tree = tagTree;
}
JTree tree = getCurrentTree();
if (tree != null) {
if (tree.getSelectionRows().length > 0) {
int row = tree.getSelectionRows()[0];