forked from QupZilla/qupzilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't steal Ctrl+U/B/I shortcuts from page.
When writing eg. mail on gmail, you can make text bold, underline and italic with Ctrl+U/B/I shortcuts. It will now correctly process the web action instead of showing bookmarks sidebar, source of page and page info. Shortcut for bookmarks sidebar has been change to Ctrl+Shift+B
- Loading branch information
Showing
4 changed files
with
49 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* ============================================================ | ||
* QupZilla - WebKit based browser | ||
* Copyright (C) 2010-2012 David Rosca <[email protected]> | ||
* Copyright (C) 2010-2013 David Rosca <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -126,7 +126,7 @@ void SideBarManager::refreshMenu() | |
m_menu->clear(); | ||
QAction* act = m_menu->addAction(SideBar::tr("Bookmarks"), this, SLOT(slotShowSideBar())); | ||
act->setCheckable(true); | ||
act->setShortcut(QKeySequence("Ctrl+B")); | ||
act->setShortcut(QKeySequence("Ctrl+Shift+B")); | ||
act->setData("Bookmarks"); | ||
|
||
act = m_menu->addAction(SideBar::tr("History"), this, SLOT(slotShowSideBar())); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters