From 95f797a6b7acb9a5cc58f37087d82db46b51ccbe Mon Sep 17 00:00:00 2001 From: Kai Azim <68963405+MrKai77@users.noreply.github.com> Date: Wed, 23 Aug 2023 00:11:40 -0600 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Keybinds=20for=202/3-sized=20window?= =?UTF-8?q?s=20are=20now=20two-key=20keybinds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Loop/Extensions/Defaults+Extensions.swift | 4 ++-- Loop/Settings/Views/KeybindingSettingsView.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Loop/Extensions/Defaults+Extensions.swift b/Loop/Extensions/Defaults+Extensions.swift index d7ce4786..f5814095 100644 --- a/Loop/Extensions/Defaults+Extensions.swift +++ b/Loop/Extensions/Defaults+Extensions.swift @@ -84,7 +84,7 @@ extension Defaults.Keys { ) static let leftTwoThirds = Key<[Set]>( "leftTwoThirds", - default: [[.kVK_ANSI_U]] + default: [[.kVK_ANSI_J, .kVK_ANSI_K]] ) static let horizontalCenterThird = Key<[Set]>( "horizontalCenterThird", @@ -92,7 +92,7 @@ extension Defaults.Keys { ) static let rightTwoThirds = Key<[Set]>( "rightTwoThirds", - default: [[.kVK_ANSI_O]] + default: [[.kVK_ANSI_K, .kVK_ANSI_L]] ) static let rightThird = Key<[Set]>( "rightThird", diff --git a/Loop/Settings/Views/KeybindingSettingsView.swift b/Loop/Settings/Views/KeybindingSettingsView.swift index 09724220..92d4e7b6 100644 --- a/Loop/Settings/Views/KeybindingSettingsView.swift +++ b/Loop/Settings/Views/KeybindingSettingsView.swift @@ -101,7 +101,7 @@ struct KeybindingSettingsView: View { HStack { VStack(alignment: .leading) { Text("Use JKL to resize into thirds:") - Text("Use U and O keys for 2/3-sized windows!") + Text("Press two keys for 2/3-sized windows!") .font(.caption) .foregroundColor(.secondary) }