mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-06-07 07:15:17 -04:00
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:
committed by
GitHub
parent
11bc39fe7c
commit
80f6faedfa
@@ -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());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user