Update textbrowser.py

Update textbrowser.py
This commit is contained in:
恍兮惚兮 2024-04-24 17:33:41 +08:00
parent 635046fe6c
commit 7144148074

View File

@ -393,7 +393,13 @@ class Textbrowser:
index = linei
_ = 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])
_.setFont(self.textbrowser.currentCharFormat().font())