Skip to content

Commit

Permalink
adds advanced settings for Basic kind.
Browse files Browse the repository at this point in the history
  • Loading branch information
onyx-and-iris committed Sep 13, 2023
1 parent bfdc030 commit 7ab7c30
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "nvda_voicemeeter"
version = "0.2.0"
version = "0.2.1"
description = "A Voicemeeter app compatible with NVDA"
authors = [
{ name = "onyx-and-iris", email = "[email protected]" },
Expand Down
1 change: 1 addition & 0 deletions src/nvda_voicemeeter/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def run(self) -> list:
steps = (
self.make_tab0_row0,
self.make_tab0_row1,
self.make_tab0_row5,
)
else:
steps = (
Expand Down
5 changes: 2 additions & 3 deletions src/nvda_voicemeeter/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,8 @@ def register_events(self):
[self[f"INSERT CHECKBOX||IN{i + 1} {j}"].bind("<FocusIn>", "||FOCUS IN") for j in range(8)]

# Advanced Settings
if self.kind.name != "basic":
self["ADVANCED SETTINGS"].bind("<FocusIn>", "||FOCUS IN")
self["ADVANCED SETTINGS"].bind("<Return>", "||KEY ENTER")
self["ADVANCED SETTINGS"].bind("<FocusIn>", "||FOCUS IN")
self["ADVANCED SETTINGS"].bind("<Return>", "||KEY ENTER")

# Strip Params
for i in range(self.kind.num_strip):
Expand Down

0 comments on commit 7ab7c30

Please sign in to comment.