summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAl <gabriel.cortesi@outlook.com>2019-01-19 23:36:52 +0100
committerAl <gabriel.cortesi@outlook.com>2019-01-19 23:36:52 +0100
commit23e81f7109505c990706aef3559aaec30edd88ff (patch)
tree6d5c48a0486bb8115d734e6e2c8fa55d6a62638a /src/mainwindow.cpp
parent6d36f1d959e06ca1db43b5f6158e73ebf0ec5459 (diff)
Open conflicts tab when double clicking on flags
not perfect as flags could be for something else but will provide fast access to that tab.
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 5330c799..2d9bfbe5 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3572,6 +3572,7 @@ void MainWindow::on_modList_doubleClicked(const QModelIndex &index)
case ModList::COL_MODID: tab = ModInfoDialog::TAB_NEXUS; break;
case ModList::COL_GAME: tab = ModInfoDialog::TAB_NEXUS; break;
case ModList::COL_CATEGORY: tab = ModInfoDialog::TAB_CATEGORIES; break;
+ case ModList::COL_FLAGS: tab = ModInfoDialog::TAB_CONFLICTS; break;
default: tab = -1;
}
displayModInformation(sourceIdx.row(), tab);