Debugger function moved to separated class, other small fixes

This commit is contained in:
honfika@gmail.com
2015-03-09 23:18:02 +01:00
parent d1c6c51c88
commit c98facb399
8 changed files with 224 additions and 197 deletions

View File

@@ -2081,6 +2081,7 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec
int row = tagTree.getSelectionRows()[0];
if (row > 0) {
tagTree.setSelectionRow(row - 1);
tagTree.scrollRowToVisible(row - 1);
previewPanel.focusTextPanel();
}
}
@@ -2095,6 +2096,7 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec
int row = tagTree.getSelectionRows()[0];
if (row < tagTree.getRowCount() - 1) {
tagTree.setSelectionRow(row + 1);
tagTree.scrollRowToVisible(row + 1);
previewPanel.focusTextPanel();
}
}