'morning,
I've got a QLabel with text that pops up when the user mouseOver a button. The problem is: part of an image elsewhere in the application is also showing up in the QLabel. Here's an image that will help explain:
http://www.beg.utexas.edu/coastal/wrl/del/both.jpg
In the primary window is a QStackedWidget with 2 widgets: the Introduction Widget (visible in the top half of the linked image) which is currently just a QLabel, and a widget containing a Coin3d scenegraph. The "Introduction" button sets the Stack index to the Introduction widget, and the other buttons on the bottom index the Coin3d widget.
When the Coin3d widget is active (bottom half of the image), mousing over buttons on the left cause QLabel information text boxes to pop up. The white text is part of the QLabel pop-up; unfortunately: part of the image from the Introduction widget is also present. How to make this stop? I've tried things like setting "hide()" on the information widget when it's not active, but that doesn't work.
as always, thank you.:)