Details
-
Bug
-
Resolution: Cannot Reproduce
-
Not Evaluated
-
4.6.0
-
None
Description
Steps to reproduce / test case:
#include <QApplication> #include <QTreeWidget> int main( int argc, char **argv ) { QApplication app( argc, argv ); QTreeWidget *w = new QTreeWidget(); for (int i=0; i<4; i++) { QTreeWidgetItem *item = new QTreeWidgetItem(); item->setCheckState(0, Qt::Checked); w->addTopLevelItem(item); } w->show(); return app.exec(); }
More information:
The supplied minimal testprogram show a QTreeWidget with 4 rows of checkboxes.
The boxes on rows 2-4 can be check/unchecked by clicking on them, but not the one on the first row. Manual checking of boxes worked fine in Qt-4.5.2.