Frage

I am using a stlyesheet to style my qt pushbutton when the mouse moves over it. However, the hover event only fires when I CLICK on the button, nothing happens when I hover my mouse over it

Trackbox { background: #FFFFFF;}

 QPushButton {
 position: fixed;
 top: 2px;
 right: 2px;
 width: 20px;
 height: 20px;
 }

 QPushButton:hover { background: #c0ffff}

Any help is appreciated. Thanks

War es hilfreich?

Lösung

This was a very simple fix. I needed to add a boarder, o px, for hover to work correctly. Thanks for all the help.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top