diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2014-01-12 10:49:38 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2014-01-12 10:49:38 +0100 |
commit | 806c0ef272b847e8a40f9335661f7336e723d3c0 (patch) | |
tree | 5589ad5fa36c4bae4cb56675928a03f45d53d427 /src/webwindow/webwindow.cpp | |
parent | rekonq 2.4.1 (diff) | |
download | rekonq-806c0ef272b847e8a40f9335661f7336e723d3c0.tar.xz |
Implement the "clear urlbar action"
You just need to add it (OUT of the urlbar) with
right click --> configure main toolbar.
Is this enough guys?
PS: Thanks alouali for the idea ;)
CCBUG: 243724
Diffstat (limited to 'src/webwindow/webwindow.cpp')
-rw-r--r-- | src/webwindow/webwindow.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/webwindow/webwindow.cpp b/src/webwindow/webwindow.cpp index ee63e4d6..12ad0cad 100644 --- a/src/webwindow/webwindow.cpp +++ b/src/webwindow/webwindow.cpp @@ -199,6 +199,10 @@ void WebWindow::setupActions() a->setDefaultWidget(_bar); actionCollection()->addAction(QL1S("url_bar"), a); + a = new KAction(KIcon("edit-clear-locationbar-rtl"), i18n("Clear Urlbar"), this); + connect(a, SIGNAL(triggered()), _bar, SLOT(clearUrlbar())); + actionCollection()->addAction(QL1S("clear_url_bar"), a); + // load stop reload Action m_loadStopReloadAction = new KAction(this); actionCollection()->addAction(QL1S("load_stop_reload") , m_loadStopReloadAction); @@ -293,7 +297,7 @@ void WebWindow::setupActions() openLocationShortcut.setAlternate(Qt::ALT + Qt::Key_D); a->setShortcut(openLocationShortcut); actionCollection()->addAction(QL1S("open_location"), a); - connect(a, SIGNAL(triggered(bool)) , this, SLOT(openLocation())); + connect(a, SIGNAL(triggered(bool)), this, SLOT(openLocation())); // User sessions management a = new KAction(KIcon("view-choose"), i18n("&Manage Sessions"), this); |