mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
Cleanup previous PR
This commit is contained in:
parent
d244a697bf
commit
30756bb819
2 changed files with 5 additions and 2 deletions
|
|
@ -184,6 +184,8 @@ Detailed list of changes
|
|||
|
||||
- Linux: Fix regression that broke drag and drop from GTK applications (:iss:`9656`)
|
||||
|
||||
- macOS: Fix using Fn key for start dictation not working (:iss:`9661`)
|
||||
|
||||
0.46.0 [2026-03-11]
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
import json
|
||||
import os
|
||||
import shutil
|
||||
import stat
|
||||
import subprocess
|
||||
import sys
|
||||
|
|
@ -40,8 +41,8 @@ class TestBuild(BaseTest):
|
|||
|
||||
def test_macos_dictation_forwarding(self) -> None:
|
||||
from kitty.constants import glfw_path, is_macos
|
||||
if not is_macos:
|
||||
self.skipTest('Dictation smoke test is macOS only')
|
||||
if not is_macos or not shutil.which('clang'):
|
||||
self.skipTest('Dictation smoke test is macOS only and requires clang')
|
||||
cocoa_module = glfw_path('cocoa')
|
||||
probe = textwrap.dedent('''\
|
||||
#import <AppKit/AppKit.h>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue