From 25839ecfdd5cf3d67df4c9900a90e98dd9738874 Mon Sep 17 00:00:00 2001 From: Serhii Bykov Date: Fri, 24 Jul 2026 15:23:18 +0200 Subject: [PATCH] fix(settings): constrain shortcut recorder width --- .../Support/Bridges/ShortcutRecorder/ShortcutRecorderView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Apps/Keyty/Sources/Keyty/Support/Bridges/ShortcutRecorder/ShortcutRecorderView.swift b/Apps/Keyty/Sources/Keyty/Support/Bridges/ShortcutRecorder/ShortcutRecorderView.swift index e06023c..7617dcd 100644 --- a/Apps/Keyty/Sources/Keyty/Support/Bridges/ShortcutRecorder/ShortcutRecorderView.swift +++ b/Apps/Keyty/Sources/Keyty/Support/Bridges/ShortcutRecorder/ShortcutRecorderView.swift @@ -14,6 +14,7 @@ struct ShortcutRecorderView: NSViewRepresentable { func makeNSView(context: Context) -> RecorderControl { let recorder = RecorderControl(frame: .zero) + recorder.setContentCompressionResistancePriority(.defaultLow, for: .horizontal) shortcutManager.configureToggleShortcutRecorder(recorder) return recorder }