We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 0fbea19 commit cc0c2b1Copy full SHA for cc0c2b1
src/gui/qgscollapsiblegroupbox.cpp
@@ -375,7 +375,10 @@ void QgsCollapsibleGroupBoxBasic::setCollapsed( bool collapse )
375
setFlat( collapse );
376
377
// avoid flicker in X11
378
- QApplication::processEvents();
+ // NOTE: this causes app to crash when loading a project that hits a group box with
379
+ // 'collapse' set via dynamic property or in code (especially if auto-launching project)
380
+ // TODO: find another means of avoiding the X11 flicker
381
+// QApplication::processEvents();
382
383
// handle QPushButtons in form layouts that stay visible on collapse (Qt bug)
384
// set flat on collapse for fix, but preserve button's flat value when expanding
0 commit comments