_switch_row description labels had set_line_wrap(True) but no set_max_width_chars, so GTK computed their natural width as the full un-wrapped text (~700px for 87-char descriptions). With NEVER horizontal policy on the page ScrolledWindow this propagated to the dialog, making Keyboard/Wakeword/Engines/Benchmark pages 1000–1360px wide. Fix: add set_max_width_chars(50) to description labels, and change the page SW horizontal policy from NEVER to AUTOMATIC as a safety net. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
385 B
Python
10 lines
385 B
Python
"""Blitztext for Linux — native dictation daemon.
|
|
|
|
Press a global hotkey, speak, and the transcribed (optionally LLM-rewritten)
|
|
text is typed into whatever text field currently has focus. This is the Linux
|
|
counterpart to the macOS Blitztext menu bar app: it runs natively on the host
|
|
(not in a container) so it can type into any application via xdotool.
|
|
"""
|
|
|
|
__version__ = "2.03.35"
|