mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 16:44:13 +08:00
issues/694
This commit is contained in:
parent
6bbc284ca0
commit
4a09a23a7f
@ -122,10 +122,14 @@ class QUnFrameWindow(resizableframeless):
|
||||
_res = text[: globalconfig["maxoriginlength"]] + "……"
|
||||
else:
|
||||
_res = text
|
||||
if globalconfig["isshowhira"] and globalconfig["isshowrawtext"]:
|
||||
self.showline(clear=clear, text=_res, hira=True, color=color)
|
||||
elif globalconfig["isshowrawtext"]:
|
||||
self.showline(clear=clear, text=_res, color=color)
|
||||
if globalconfig["isshowrawtext"]:
|
||||
hira = (
|
||||
globalconfig["isshowhira"]
|
||||
or globalconfig["usesearchword"]
|
||||
or globalconfig["usecopyword"]
|
||||
or globalconfig["show_fenci"]
|
||||
)
|
||||
self.showline(clear=clear, text=_res, hira=hira, color=color)
|
||||
else:
|
||||
self.showline(clear=clear)
|
||||
|
||||
@ -266,11 +270,8 @@ class QUnFrameWindow(resizableframeless):
|
||||
self.translate_text.append(text, hira, origin)
|
||||
if globalconfig["zitiyangshi"] == 3:
|
||||
self.translate_text.showyinyingtext(color)
|
||||
if (
|
||||
globalconfig["usesearchword"]
|
||||
or globalconfig["usecopyword"]
|
||||
or globalconfig["show_fenci"]
|
||||
) and hira:
|
||||
|
||||
if hira:
|
||||
|
||||
def callback(word):
|
||||
if globalconfig["usewordorigin"] == False:
|
||||
|
Loading…
x
Reference in New Issue
Block a user