Skip to content

Commit 9d8ea5f

Browse files
committed
fixes regression, bus focus in/out readded
patch bump
1 parent 0dd6c89 commit 9d8ea5f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "nvda_voicemeeter"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "A Voicemeeter app compatible with NVDA"
55
authors = [
66
{ name = "onyx-and-iris", email = "code@onyxandiris.online" },

src/nvda_voicemeeter/window.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,8 @@ def register_events(self):
270270

271271
# Bus Sliders
272272
for i in range(self.kind.num_bus):
273+
self[f"BUS {i}||SLIDER GAIN"].bind("<FocusIn>", "||FOCUS IN")
274+
self[f"BUS {i}||SLIDER GAIN"].bind("<FocusOut>", "||FOCUS OUT")
273275
for event in ("KeyPress", "KeyRelease"):
274276
event_id = event.removeprefix("Key").upper()
275277
for direction in ("Left", "Right", "Up", "Down"):

0 commit comments

Comments
 (0)