From e7cc5cd34ececfa8c6527ebe58a81161c4b19ebe Mon Sep 17 00:00:00 2001 From: Hannah von Reth Date: Fri, 10 Sep 2021 15:28:30 +0200 Subject: [PATCH] Default mac KeyBindings to 'macos' --- src/profile/Profile.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/profile/Profile.cpp b/src/profile/Profile.cpp index 27aaea1e..09eaf50e 100644 --- a/src/profile/Profile.cpp +++ b/src/profile/Profile.cpp @@ -188,7 +188,11 @@ void Profile::useFallback() setProperty(MouseWheelZoomEnabled, true); setProperty(AlternateScrolling, true); +#ifdef Q_OS_MACOS + setProperty(KeyBindings, QStringLiteral("macos")); +#else setProperty(KeyBindings, QStringLiteral("default")); +#endif setProperty(ColorScheme, QStringLiteral("Breeze")); setProperty(Font, QFontDatabase::systemFont(QFontDatabase::FixedFont));