mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-28 08:04:13 +08:00
fix
This commit is contained in:
parent
4994d6248d
commit
9638fda582
@ -562,24 +562,15 @@ class QUnFrameWindow(resizableframeless):
|
||||
windows.SWP_NOACTIVATE | windows.SWP_NOSIZE | windows.SWP_NOMOVE,
|
||||
)
|
||||
|
||||
def settop(self):
|
||||
if (
|
||||
def istopmost(self):
|
||||
return bool(
|
||||
windows.GetWindowLong(int(self.winId()), windows.GWL_EXSTYLE)
|
||||
& windows.WS_EX_TOPMOST
|
||||
) == 0:
|
||||
windows.SetWindowPos(
|
||||
int(self.winId()),
|
||||
windows.HWND_NOTOPMOST,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
windows.SWP_NOACTIVATE | windows.SWP_NOSIZE | windows.SWP_NOMOVE,
|
||||
)
|
||||
HWNDStyleEx = windows.GetWindowLong(int(self.winId()), windows.GWL_EXSTYLE)
|
||||
windows.SetWindowLong(
|
||||
int(self.winId()), windows.GWL_EXSTYLE, HWNDStyleEx & ~windows.WS_EX_TOPMOST
|
||||
)
|
||||
)
|
||||
|
||||
def settop(self):
|
||||
if not self.istopmost():
|
||||
self.canceltop()
|
||||
HWNDStyleEx = windows.GetWindowLong(int(self.winId()), windows.GWL_EXSTYLE)
|
||||
windows.SetWindowLong(
|
||||
int(self.winId()), windows.GWL_EXSTYLE, HWNDStyleEx | windows.WS_EX_TOPMOST
|
||||
|
@ -425,15 +425,22 @@ def minmaxmoveobservefunc(self):
|
||||
if globalconfig["keepontop"] and globalconfig["focusnotop"]:
|
||||
if _focusp == os.getpid():
|
||||
pass
|
||||
elif (
|
||||
len(gobject.baseobject.textsource.pids) == 0
|
||||
or _focusp in gobject.baseobject.textsource.pids
|
||||
):
|
||||
gobject.baseobject.translation_ui.thistimenotsetop = False
|
||||
gobject.baseobject.translation_ui.settop()
|
||||
else:
|
||||
gobject.baseobject.translation_ui.thistimenotsetop = True
|
||||
gobject.baseobject.translation_ui.canceltop()
|
||||
hwndmagpie = windows.FindWindow(
|
||||
"Window_Magpie_967EB565-6F73-4E94-AE53-00CC42592A22", None
|
||||
)
|
||||
hwndlossless = windows.FindWindow("LosslessScaling", None)
|
||||
if (
|
||||
len(gobject.baseobject.textsource.pids) == 0
|
||||
or _focusp in gobject.baseobject.textsource.pids
|
||||
or hwnd == hwndmagpie
|
||||
or hwnd == hwndlossless
|
||||
):
|
||||
gobject.baseobject.translation_ui.thistimenotsetop = False
|
||||
gobject.baseobject.translation_ui.settop()
|
||||
else:
|
||||
gobject.baseobject.translation_ui.thistimenotsetop = True
|
||||
gobject.baseobject.translation_ui.canceltop()
|
||||
if _focusp != windows.GetWindowThreadProcessId(
|
||||
gobject.baseobject.textsource.hwnd
|
||||
):
|
||||
|
Loading…
x
Reference in New Issue
Block a user