summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormegabigbug <megabigbug@arrakis.(none)>2009-07-29 20:14:31 +0200
committermegabigbug <megabigbug@arrakis.(none)>2009-07-29 20:14:31 +0200
commita23c1bce57b488c08b27a3c095e974b260c47b55 (patch)
tree991f20b664016aff15b697e3ef3e2feed549dde0
parentFixing initial stop_reload action (diff)
downloadrekonq-a23c1bce57b488c08b27a3c095e974b260c47b55.tar.xz
fix stop/reload button initialization
-rw-r--r--src/mainwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 706a3051..3591e348 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -255,7 +255,8 @@ void MainWindow::setupActions()
actionCollection()->addAction(QLatin1String("stop_reload") , m_stopReloadAction);
m_stopReloadAction->setShortcutConfigurable(false);
connect(m_view, SIGNAL(browserLoading(bool)), this, SLOT(slotBrowserLoading(bool)));
-
+ slotBrowserLoading(false); //first init for blank start page
+
// ============== Custom Actions
a = new KAction(KIcon("document-open-remote"), i18n("Open Location"), this);
a->setShortcut(Qt::CTRL + Qt::Key_L);