adds advanced settings for Basic kind.

This commit is contained in:
onyx-and-iris 2023-09-13 14:12:48 +01:00
parent bfdc0306e3
commit 7ab7c30e80
3 changed files with 4 additions and 4 deletions

View File

@ -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 = "code@onyxandiris.online" },

View File

@ -27,6 +27,7 @@ class Builder:
steps = (
self.make_tab0_row0,
self.make_tab0_row1,
self.make_tab0_row5,
)
else:
steps = (

View File

@ -167,9 +167,8 @@ class NVDAVMWindow(psg.Window):
[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):