macOS: Disable macOS one time code autofill popups

Fixes #10250
This commit is contained in:
Kovid Goyal
2026-07-13 09:06:24 +05:30
parent e966528a14
commit 45a97ee5af
2 changed files with 5 additions and 0 deletions

View File

@@ -232,6 +232,8 @@ Detailed list of changes
- Graphics: Fix incorrect calculated cursor position when placing images with X/Y cell offsets (:pull:`10256`) - Graphics: Fix incorrect calculated cursor position when placing images with X/Y cell offsets (:pull:`10256`)
- macOS: Disable macOS one time code autofill popups (:pull:`10250`)
0.47.4 [2026-06-15] 0.47.4 [2026-06-15]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@@ -1765,6 +1765,9 @@ def macos_info_plist(for_quake: str = '') -> bytes:
NSBluetoothAlwaysUsageDescription=access('Bluetooth.'), NSBluetoothAlwaysUsageDescription=access('Bluetooth.'),
# Speech # Speech
NSSpeechRecognitionUsageDescription=access('speech recognition.'), NSSpeechRecognitionUsageDescription=access('speech recognition.'),
# One time code autofill popups
# see https://github.com/kovidgoyal/kitty/pull/10250
NSAutoFillRequiresTextContentTypeForOneTimeCodeOnMac=True,
) )
if for_quake: if for_quake:
# exclude from dock and menubar # exclude from dock and menubar