mirror of
https://github.com/onyx-and-iris/nvda-voicemeeter.git
synced 2024-11-22 18:00:50 +00:00
add debug logs for popups
This commit is contained in:
parent
2666d8081a
commit
b3771b13c0
@ -141,6 +141,8 @@ class NVDAVMWindow(psg.Window):
|
|||||||
filepath = None
|
filepath = None
|
||||||
while True:
|
while True:
|
||||||
event, values = window.read()
|
event, values = window.read()
|
||||||
|
self.logger.debug(f"event::{event}")
|
||||||
|
self.logger.debug(f"values::{values}")
|
||||||
if event in (psg.WIN_CLOSED, "Cancel"):
|
if event in (psg.WIN_CLOSED, "Cancel"):
|
||||||
break
|
break
|
||||||
elif event.endswith("||FOCUS IN"):
|
elif event.endswith("||FOCUS IN"):
|
||||||
@ -189,8 +191,8 @@ class NVDAVMWindow(psg.Window):
|
|||||||
data = {}
|
data = {}
|
||||||
while True:
|
while True:
|
||||||
event, values = window.read()
|
event, values = window.read()
|
||||||
print(f"event: {event}")
|
self.logger.debug(f"event::{event}")
|
||||||
print(f"values: {values}")
|
self.logger.debug(f"values::{values}")
|
||||||
if event in (psg.WIN_CLOSED, "Cancel"):
|
if event in (psg.WIN_CLOSED, "Cancel"):
|
||||||
break
|
break
|
||||||
elif event.endswith("||KEY ENTER"):
|
elif event.endswith("||KEY ENTER"):
|
||||||
|
Loading…
Reference in New Issue
Block a user