Update LunaTranslator.py

This commit is contained in:
恍兮惚兮 2024-04-11 20:21:09 +08:00
parent 818a285a98
commit 4895550fcb

View File

@ -778,10 +778,11 @@ class MAINUI:
try: try:
_hwnd = windows.GetForegroundWindow() _hwnd = windows.GetForegroundWindow()
_pid = windows.GetWindowThreadProcessId(_hwnd) _pid = windows.GetWindowThreadProcessId(_hwnd)
try: try:
if ( if len(self.textsource.pids) == 0:
_pid in self.textsource.pids or _pid == os.getpid() raise Exception()
): # or的顺序不可以修改 if _pid in self.textsource.pids or _pid == os.getpid():
isok(self.textsource.pname) isok(self.textsource.pname)
else: else:
isbad() isbad()