diff options
author | megabigbug <megabigbug@arrakis.(none)> | 2009-07-29 20:14:31 +0200 |
---|---|---|
committer | megabigbug <megabigbug@arrakis.(none)> | 2009-07-29 20:14:31 +0200 |
commit | a23c1bce57b488c08b27a3c095e974b260c47b55 (patch) | |
tree | 991f20b664016aff15b697e3ef3e2feed549dde0 /src | |
parent | Fixing initial stop_reload action (diff) | |
download | rekonq-a23c1bce57b488c08b27a3c095e974b260c47b55.tar.xz |
fix stop/reload button initialization
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.cpp | 3 |
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); |