Details
-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
6.5.0
-
5ba3db212 (dev), 564734561 (6.5)
Description
A minimal reproducer:
QQuickItem item;
qDebug() << item.isVisible();
item.setVisible(false);
qDebug() << item.isVisible();
item.setVisible(true);
qDebug() << item.isVisible();
In 6.4.x, output is:
true
false
true
The default value is true, and can be switched back and forth.
In 6.5.0, output is:
true
false
false
The value cannot be switched back to true.
Attachments
For Gerrit Dashboard: QTBUG-112838 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
472475,2 | Doc: add a general statement about QQuickItem::visible | dev | qt/qtdeclarative | Status: MERGED | +2 | 0 |
472910,2 | Doc: add a general statement about QQuickItem::visible | 6.5 | qt/qtdeclarative | Status: MERGED | +2 | 0 |