Re: [Interest] Proper way to track mouse leaving a widgets boundary

2022-08-16 Thread Scott Bloom
Hey Scott, This should be a job for a QWidget::leaveEvent override: https://doc.qt.io/qt-6/qwidget.html#leaveEvent Volker == How did I miss that in the 20 years of Qt coding??? dang ___ Interest mailing list Interest@qt-project.org https

Re: [Interest] Proper way to track mouse leaving a widgets boundary

2022-08-16 Thread Volker Hilsheimer
> On 16 Aug 2022, at 18:45, Scott Bloom wrote: > > I have a QTextEdit derived class, that sets setMouseTracking( true ) in the > constructor. Note, this isn’t about QTextEdit and should I use QTextBrowser. > Ive had this issue multiple times over the last 20 years of Qt development, > and th