Details
-
Bug
-
Resolution: Duplicate
-
P2: Important
-
None
-
5.1.1
-
None
-
MS Windows
Description
In the attached code the check in the checkbox does not always draw correctly.
I found a workaround that fixes it.
class CustomStyle : public QProxyStyle { void drawControl(ControlElement element, const QStyleOption* option, QPainter* painter, const QWidget* widget) const { if (element == QStyle::CE_CheckBox && dynamic_cast<QWebView*>(option->styleObject)) option->styleObject->setProperty("_q_no_animation", true); QProxyStyle::drawControl(element, option, painter, widget); } };
since the QStyleOption::styleObject is the QWebView, when the animation is generated it has a bad starting point. QWindowsVistaStyle::drawPrimitive uses QStyleOption::styleObject->property("_q_stylestate") for the starting point. The stylestate of the QWebView has nothing to do with the checkbox state.
Attachments
Issue Links
- relates to
-
QTBUG-36729 Bad checkboxes and radio buttons in qwebview on windows
-
- Closed
-
-
QTBUG-30072 Qt5: Radio button behavior in Html forms(webkit) is unpredictable
-
- Closed
-