diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-11-15 22:57:12 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:06 +0100 |
commit | 9bba12572b7d531ec47420bbbbc9414d408d3287 (patch) | |
tree | 13d008c96d0af67300e0afb0136e90dba15ccde9 /src/webwindow | |
parent | Clean up url suggestions, step 2 (diff) | |
download | rekonq-9bba12572b7d531ec47420bbbbc9414d408d3287.tar.xz |
Fix fullscreen action && shortcuts
Diffstat (limited to 'src/webwindow')
-rw-r--r-- | src/webwindow/webwindow.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/webwindow/webwindow.cpp b/src/webwindow/webwindow.cpp index df38c969..be2ba5da 100644 --- a/src/webwindow/webwindow.cpp +++ b/src/webwindow/webwindow.cpp @@ -246,12 +246,7 @@ void WebWindow::setupActions() KStandardAction::findNext(m_findBar, SLOT(findNext()), actionCollection()); KStandardAction::findPrev(m_findBar, SLOT(findPrevious()), actionCollection()); - - a = KStandardAction::fullScreen(this, SIGNAL(setFullScreen(bool)), this, actionCollection()); - KShortcut fullScreenShortcut = KStandardShortcut::fullScreen(); - fullScreenShortcut.setAlternate(Qt::Key_F11); - a->setShortcut(fullScreenShortcut); - + a = KStandardAction::redisplay(_tab->view(), SLOT(reload()), actionCollection()); a->setText(i18n("Reload")); KShortcut reloadShortcut = KStandardShortcut::reload(); |