fix: don't set binding for "toggle local r9k" on macOS (#5764)
Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
This commit is contained in:
committed by
GitHub
parent
9d0de1c373
commit
b6945e39f4
@@ -6,6 +6,7 @@
|
|||||||
- Minor: Moved the "Delete message" menu option into a "Moderate" sub-menu. (#6100)
|
- Minor: Moved the "Delete message" menu option into a "Moderate" sub-menu. (#6100)
|
||||||
- Bugfix: Fixed the channel name input not being focused when opening the select-channel dialog. (#6096)
|
- Bugfix: Fixed the channel name input not being focused when opening the select-channel dialog. (#6096)
|
||||||
- Bugfix: Fixed inputs in dialogs not having a border around and padding in them. (#6098)
|
- Bugfix: Fixed inputs in dialogs not having a border around and padding in them. (#6098)
|
||||||
|
- Bugfix: Don't set default binding for "Toggle local R9K" on macOS. Was <kbd>CTRL</kbd> + <kdb>H</kdb> before, which clashes with a system binding. (#5764)
|
||||||
- Dev: Temporarily disable precompiled header support for macOS. (#6104)
|
- Dev: Temporarily disable precompiled header support for macOS. (#6104)
|
||||||
|
|
||||||
## 2.5.3-beta.1
|
## 2.5.3-beta.1
|
||||||
|
|||||||
@@ -515,9 +515,11 @@ void HotkeyController::addDefaults(std::set<QString> &addedHotkeys)
|
|||||||
QKeySequence("Ctrl+G"), "reopenSplit",
|
QKeySequence("Ctrl+G"), "reopenSplit",
|
||||||
std::vector<QString>(), "reopen split");
|
std::vector<QString>(), "reopen split");
|
||||||
|
|
||||||
|
#ifndef Q_OS_MACOS
|
||||||
this->tryAddDefault(addedHotkeys, HotkeyCategory::Window,
|
this->tryAddDefault(addedHotkeys, HotkeyCategory::Window,
|
||||||
QKeySequence("Ctrl+H"), "toggleLocalR9K",
|
QKeySequence("Ctrl+H"), "toggleLocalR9K",
|
||||||
std::vector<QString>(), "toggle local r9k");
|
std::vector<QString>(), "toggle local r9k");
|
||||||
|
#endif
|
||||||
|
|
||||||
this->tryAddDefault(addedHotkeys, HotkeyCategory::Window,
|
this->tryAddDefault(addedHotkeys, HotkeyCategory::Window,
|
||||||
QKeySequence("Ctrl+K"), "openQuickSwitcher",
|
QKeySequence("Ctrl+K"), "openQuickSwitcher",
|
||||||
|
|||||||
Reference in New Issue
Block a user