UI: Fix scene list spacing (#7202)

The reason why the scene list spacing would never work is because
spacing was always set to 0 in the resize event.
This commit is contained in:
Clayton Groeneveld
2022-08-29 18:14:30 -05:00
committed by GitHub
parent 11bc39fe7c
commit 80f6faedfa

View File

@@ -91,7 +91,7 @@ void SceneTree::resizeEvent(QResizeEvent *event)
}
} else {
setGridSize(QSize());
setSpacing(0);
setSpacing(1);
for (int i = 0; i < count(); i++) {
item(i)->setData(Qt::SizeHintRole, QVariant());
}