Jaded-Encoding-Thaumaturgy / vs-preview

Previewer for VapourSynth scripts.
Apache License 2.0
61 stars 19 forks source link

Fix crash when Frame Props dialog is cleared during output switching. #64

Closed JustinTArthur closed 1 year ago

JustinTArthur commented 1 year ago

Crash was due to sub-layouts being included in the layout's items being iterated and sub-layouts don't contain a singular widget. Sub-layouts are now removed, cleared, and deleted. Widgets removed from the layout are deleted as before.

widget.deleteLater() will remove the parent relationship automatically so widget.setParent(None) is unnecessary.

Fixes Irrational-Encoding-Wizardry/vs-preview#63