now has next/prev with keystroke

This commit is contained in:
Jared Bruni
2020-01-10 20:48:16 -08:00
parent 24729b7de5
commit 0d596fcfd6

View File

@@ -1725,5 +1725,9 @@ void AC_MainWindow::next_filter() {
} }
void AC_MainWindow::prev_filter() { void AC_MainWindow::prev_filter() {
int index = filters->currentIndex();
if(index > 0) {
--index;
filters->setCurrentIndex(index);
}
} }