summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-10-20 17:10:28 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-10-20 17:10:28 +0200
commit4461299dd26ba5569494a32a7529d8c1a3f56496 (patch)
tree6275cf1bec9d706b631a2544880e874ab020079c /src/mainwindow.cpp
parentFixing merge (diff)
downloadrekonq-4461299dd26ba5569494a32a7529d8c1a3f56496.tar.xz
Fix history actions update
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index f68a3880..4e9c4b26 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -207,7 +207,9 @@ 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();
+
// Find Bar signal
connect(m_findBar, SIGNAL(searchString(const QString &)), this, SLOT(slotFind(const QString &)));