我正在尝试更改将突出显示的字体的颜色(红色)。我面临的问题是,当我突出显示第一个单词时, 随后的所有文本都变为红色。
def cursorPosition(self):
logging.debug("Cursor Positiong changed")
self.cursor = self.ui.captureWindow.textCursor()
if self.cursor.hasSelection():
fmt = QTextCharFormat()
fmt.setForeground(Qt.red)
logging.debug(self.cursor.selectedText())
# We insert the new text, which will override the selected text
self.cursor.insertText(self.cursor.selectedText(), fmt)
# txt = '<p style="color:red;">' + self.cursor.selectedText() + '</p> '
# self.cursor.insertHtml(txt)
# And set the new cursor
self.ui.captureWindow.setTextCursor(self.cursor)
我尝试使用insertText
和insertHtml
这两种方法进行操作。
insertHtml
在结束标记后面是否有空格有效。删除该空格,其行为与insertText
相同,在第一个高亮显示后所有内容将变为红色。