summaryrefslogtreecommitdiff
path: root/src/webtab
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-11-15 22:57:12 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:06 +0100
commit9bba12572b7d531ec47420bbbbc9414d408d3287 (patch)
tree13d008c96d0af67300e0afb0136e90dba15ccde9 /src/webtab
parentClean up url suggestions, step 2 (diff)
downloadrekonq-9bba12572b7d531ec47420bbbbc9414d408d3287.tar.xz
Fix fullscreen action && shortcuts
Diffstat (limited to 'src/webtab')
-rw-r--r--src/webtab/webview.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/webtab/webview.cpp b/src/webtab/webview.cpp
index bb90a58a..31082a61 100644
--- a/src/webtab/webview.cpp
+++ b/src/webtab/webview.cpp
@@ -40,10 +40,10 @@
#include "bookmarkmanager.h"
#include "iconmanager.h"
-#include "webwindow.h"
#include "searchengine.h"
#include "webpage.h"
#include "webtab.h"
+#include "webwindow.h"
// KDE Includes
#include <KAction>
@@ -361,14 +361,6 @@ void WebView::contextMenuEvent(QContextMenuEvent *event)
menu.addAction(webwin->actionByName("page_source"));
menu.addAction(inspectAction);
}
-
- // we need to show everytime this because we cannot communicate with the tabwindow.
- // We are NOT sure it exists..
- if (webwin)
- {
- menu.addSeparator();
- menu.addAction(webwin->actionByName(KStandardAction::name(KStandardAction::FullScreen)));
- }
}
// LINK ACTIONS -------------------------------------------------------------------