summaryrefslogtreecommitdiff
path: root/src/webview.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-12-13 18:00:07 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-12-13 18:00:07 +0100
commit3b38ecdb9ccbf8dc19847b0cccc1920dac376812 (patch)
tree2c73026feac6c8aaf2234f4c72ee73a058466ed0 /src/webview.cpp
parentGCI Task by Furkan Uzumcu: Context Menu Improvements (diff)
downloadrekonq-3b38ecdb9ccbf8dc19847b0cccc1920dac376812.tar.xz
Some changes by me: Find action after open link items
Diffstat (limited to 'src/webview.cpp')
-rw-r--r--src/webview.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/webview.cpp b/src/webview.cpp
index 9e9203d6..ee0b9a6f 100644
--- a/src/webview.cpp
+++ b/src/webview.cpp
@@ -143,11 +143,6 @@ void WebView::contextMenuEvent(QContextMenuEvent *event)
KMenu menu(this);
QAction *a;
- if(result.pixmap().isNull())
- {
- a = mainwindow->actionByName(KStandardAction::name(KStandardAction::Find));
- menu.addAction(a);
- }
KAction *inspectAction = new KAction(KIcon("layer-visible-on"), i18n("Inspect Element"), this);
connect(inspectAction, SIGNAL(triggered(bool)), this, SLOT(inspect()));
@@ -170,6 +165,13 @@ void WebView::contextMenuEvent(QContextMenuEvent *event)
menu.addSeparator();
}
+ // add find action.
+ if(result.pixmap().isNull())
+ {
+ a = mainwindow->actionByName(KStandardAction::name(KStandardAction::Find));
+ menu.addAction(a);
+ }
+
// is content editable && selected? Add CUT
if (result.isContentEditable() && result.isContentSelected())
{