summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 130b5fe7..b5729c15 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -2169,7 +2169,12 @@ void MainWindow::on_tabWidget_currentChanged(int index)
} else if (index == 1) {
m_OrganizerCore.refreshBSAList();
} else if (index == 2) {
- m_DataTab->activated();
+ static bool first = true;
+
+ if (first) {
+ m_DataTab->activated();
+ first = false;
+ }
} else if (index == 3) {
refreshSaveList();
}