-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.log
More file actions
28 lines (24 loc) · 825 Bytes
/
diff.log
File metadata and controls
28 lines (24 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
diff --git a/addon/appModules/line.py b/addon/appModules/line.py
index 683472a..dd46baf 100644
--- a/addon/appModules/line.py
+++ b/addon/appModules/line.py
@@ -23,6 +23,7 @@ import ctypes.wintypes
import comtypes
import re
import time
+from ._virtualWindow import VirtualWindow
import addonHandler
addonHandler.initTranslation()
@@ -2514,6 +2515,7 @@ class AppModule(appModuleHandler.AppModule):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
+ VirtualWindow.initialize()
log.info(
f"LINE AppModule loaded for process: {self.processID}, "
f"exe: {self.appName}"
@@ -2728,6 +2730,7 @@ class AppModule(appModuleHandler.AppModule):
except Exception:
pass
+ VirtualWindow.onFocusChanged(obj)
nextHandler()
def event_UIA_elementSelected(self, obj, nextHandler):