-
Bug
-
Resolution: Fixed
-
P1: Critical
-
None
-
6.10
-
Windows 11; Dark Mode; System scale: 125%
-
-
d48185433 (dev), 8455467c4 (6.10), 9fe2ea401 (6.9), 51403ef8b (tqtc/lts-6.8), 072bf40fe (dev), 51e180da6 (6.10), 4016fbb87 (6.9), 460d1efb5 (tqtc/lts-6.8)
Steps to reproduce:
1. Widget action in the menu:
- run the attached "widget_action_menu" project
- click on "Show menu" button
- tick on the "cb1" check-box
Expected result: "widget_action_menu-good.jpg"
Actual result: "widget_action_menu-bad.jpg"
FIXED!
2. Checkbox inside of scroll area:
int main(int argc, char* argv[]) { QApplication app(argc, argv); QScrollArea sa; sa.setWidgetResizable(true); QWidget w; sa.setWidget(&w); auto lay1 = new QHBoxLayout(&w); QCheckBox cbx1("cbx1"); cbx1.setChecked(true); lay1->addWidget(&cbx1); sa.show(); return app.exec(); }
- relates to
-
QTBUG-139051 Background color of QPlainTextEdit without border cannont be set on Win11
-
- Closed
-
- resulted from
-
QTBUG-138094 Radiobuttons/Checkboxes in windows11 style do not follow WinUI3 style
-
- Closed
-