ColinDuquesnoy / QDarkStyleSheet

A dark style sheet for QtWidgets application
Other
2.76k stars 725 forks source link

QColorDialog problem #319

Open DaeHeeLim opened 1 year ago

DaeHeeLim commented 1 year ago

QWidget::item:hover:!selected { background-color: #1A72BB; }

.qss creates problems with QColorDialog .

Mouse movement on the color canvas is strange.

Is this a QT bug?

The code below reproduces the problem.

QColorDialog dlg;
dlg.setStyleSheet("QWidget::item:hover:!selected { background-color: #1A72BB; }");
dlg.exec();
slavedas commented 1 year ago

Thank you! I was having this exact same problem and had JUST gotten to commenting that line out. That works for me for now at least.