fix: don't set split focus hotkeys by default on macOS (#6470)
This commit is contained in:
committed by
GitHub
parent
8e9df07ab3
commit
befe2da78d
@@ -378,6 +378,7 @@ void HotkeyController::addDefaults(std::set<QString> &addedHotkeys)
|
||||
QKeySequence("Alt+x"), "createClip",
|
||||
std::vector<QString>(), "create clip");
|
||||
|
||||
#ifndef Q_OS_MACOS
|
||||
this->tryAddDefault(addedHotkeys, HotkeyCategory::Split,
|
||||
QKeySequence("Alt+left"), "focus", {"left"},
|
||||
"focus left");
|
||||
@@ -390,6 +391,7 @@ void HotkeyController::addDefaults(std::set<QString> &addedHotkeys)
|
||||
this->tryAddDefault(addedHotkeys, HotkeyCategory::Split,
|
||||
QKeySequence("Alt+right"), "focus", {"right"},
|
||||
"focus right");
|
||||
#endif
|
||||
|
||||
this->tryAddDefault(addedHotkeys, HotkeyCategory::Split,
|
||||
QKeySequence("PgUp"), "scrollPage", {"up"},
|
||||
|
||||
Reference in New Issue
Block a user