質問

Is there a signal that is sent by QTextBrowser when highlighting text?

self.textBrowser.highlighted.connect(self.test)

def test(self,argv_1):
   print('This Worked')

When I tried this the signal didn't seem to be sent.

役に立ちましたか?

解決

The highlighted signal is emitted when an anchor in the text is highlighted, it doesn't fire when text is selected.

If you're interested in in changes of the selection, use the selectionChanged signal (inherited from QTextEdit)

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top