문제

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