Hi,

My program removes a pixmap (a QLabel) from the screen and replaces it back as the user clicks a button.
Everything works fine except for the fact that when the pixmap is removed from the QLabel, other graphics collapses onto where the pixmap originally was. I need something to hold the pixmap's place until it is put back. This means I need to put something invisible in the pixmaps place while it's gone. I have tried a transparent pixmap but for some reason this lets the graphics to collapse, too. The program doesn't think the transparent pixmap has any "substance". It treats the transparent pixmap like air by letting other widgets take it's place.
Question: What do you use as an invisible placeholder for a pipxmap that's displayed as a QLabel? A QRect? Something else?