I am using the QStatusBar
to print information for how many items are in a list.
This works well, however when I hover over any of the QMenu
icons it clears all data from the QStatus, leaving it blank.
I'm working in windows, and I believe that it's something native that I need to break the connection of that keeps trying to update the statusbar with new information, as I wasn't having this issue while running my window from Maya.
Any ideas for how I could fix this would be great! I'd rather not create a new widget to hold this information.
There are different ways to
Simplest way is to add
QLabel
to status bar, set it'sstretch
to a non-zero value and change Label's text instead.Another way is to install event filter on QStatusBar, either via subclassing or monkey patching. Example of the latter: