mirror of
https://github.com/onyx-and-iris/nvda-voicemeeter.git
synced 2024-11-22 18:00:50 +00:00
remove debug statement
This commit is contained in:
parent
10e99c5f78
commit
ddbb339810
@ -96,7 +96,6 @@ class NVDAVMWindow(psg.Window):
|
|||||||
self.nvda.speak(f"tab {values['tabs']}")
|
self.nvda.speak(f"tab {values['tabs']}")
|
||||||
continue
|
continue
|
||||||
elif event in ("Escape:27", "\r"):
|
elif event in ("Escape:27", "\r"):
|
||||||
self.logger.debug("escape key pressed event")
|
|
||||||
self.TKroot.after(100, self.refresh)
|
self.TKroot.after(100, self.refresh)
|
||||||
if self.current_focus:
|
if self.current_focus:
|
||||||
self.current_focus.set_focus()
|
self.current_focus.set_focus()
|
||||||
@ -104,7 +103,7 @@ class NVDAVMWindow(psg.Window):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
match parsed_cmd := self.parser.match.parseString(event):
|
match parsed_cmd := self.parser.match.parseString(event):
|
||||||
# Utility
|
# Track focus
|
||||||
case [" "]:
|
case [" "]:
|
||||||
self.current_focus = self.find_element_with_focus()
|
self.current_focus = self.find_element_with_focus()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user