diff options
author | matgic78 <matgic78@gmail.com> | 2009-10-18 12:52:13 +0200 |
---|---|---|
committer | matgic78 <matgic78@gmail.com> | 2009-10-18 12:52:13 +0200 |
commit | e216d455ff141949c17977e29ec7e0392f20863f (patch) | |
tree | 4ee02c8d3b72c241725499f59b1b9a5d561d5a88 /src/webview.cpp | |
parent | Merge commit 'refs/merge-requests/1827' of git://gitorious.org/rekonq/mainlin... (diff) | |
download | rekonq-e216d455ff141949c17977e29ec7e0392f20863f.tar.xz |
add a separator beetween text and link actions in contextmenu
Diffstat (limited to 'src/webview.cpp')
-rw-r--r-- | src/webview.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 9e06c9da..25b7f8ea 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -135,6 +135,8 @@ void WebView::contextMenuEvent(QContextMenuEvent *event) a = pageAction(QWebPage::CopyLinkToClipboard); a->setIcon(KIcon("edit-copy")); menu.addAction(a); + + menu.addSeparator(); } // is content editable && selected? Add CUT |