mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 00:24:13 +08:00
fix
Update textbrowser.py Update textbrowser.py
This commit is contained in:
parent
635046fe6c
commit
7144148074
@ -393,7 +393,13 @@ class Textbrowser:
|
|||||||
|
|
||||||
index = linei
|
index = linei
|
||||||
_ = self.yinyinglabels[index]
|
_ = self.yinyinglabels[index]
|
||||||
_.move(tl1)
|
if self.align:#不然有时候有一个微小的错位
|
||||||
|
fm = QFontMetricsF(self.textbrowser.currentCharFormat().font())
|
||||||
|
w = fm.width(block.text()[s : s + l])
|
||||||
|
WW = self.textbrowser.width()
|
||||||
|
_.move(int(WW / 2 - w / 2), tl1.y())
|
||||||
|
else:
|
||||||
|
_.move(tl1)
|
||||||
_.setText(block.text()[s : s + l])
|
_.setText(block.text()[s : s + l])
|
||||||
_.setFont(self.textbrowser.currentCharFormat().font())
|
_.setFont(self.textbrowser.currentCharFormat().font())
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user