diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-20 17:10:28 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-20 17:10:28 +0200 |
commit | 4461299dd26ba5569494a32a7529d8c1a3f56496 (patch) | |
tree | 6275cf1bec9d706b631a2544880e874ab020079c /src | |
parent | Fixing merge (diff) | |
download | rekonq-4461299dd26ba5569494a32a7529d8c1a3f56496.tar.xz |
Fix history actions update
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.cpp | 4 |
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 &))); |