diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-28 01:17:40 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-28 01:17:40 +0100 |
commit | b8464b088d67b7e2eee7aeceb71088174eb1667c (patch) | |
tree | 58151aa897035036c50d1af57eed82ad197f74d8 /src/mainwindow.cpp | |
parent | Saving on changes (diff) | |
download | rekonq-b8464b088d67b7e2eee7aeceb71088174eb1667c.tar.xz |
Let Action Collection read settings
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 4 |
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(); } |