summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainwindow.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index e6543e86..f079c8b9 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -214,6 +214,7 @@ void MainWindow::postLaunch()
// update toolbar actions signals
connect(m_view, SIGNAL(tabsChanged()), this, SLOT(slotUpdateActions()));
connect(m_view, SIGNAL(currentChanged(int)), this, SLOT(slotUpdateActions()));
+
// launch it manually. Just the first time...
slotUpdateActions();
@@ -225,6 +226,9 @@ void MainWindow::postLaunch()
// accept d'n'd
setAcceptDrops(true);
+
+ // KActionCollection read settings
+ m_ac->readSettings();
}