Hi all
I'm setting the max outputsize for the common render dialog, but I'm having a hard time for the settings to take effect
I've tried various things
just before setting the outputsize:
after setting outputsize
When I do this with buttons, it mostly works
When I do it with spinners, it only works sometimes?!?
I do the same for the height, but no matter if the dialog is open, closed or updated I get glitches
I'm setting the max outputsize for the common render dialog, but I'm having a hard time for the settings to take effect
I've tried various things
just before setting the outputsize:
Code:
renderSceneDialog.close()
Code:
renderSceneDialog.update()
When I do it with spinners, it only works sometimes?!?
Code:
on spnWidth changed val do ( renderSceneDialog.close() renderWidth = spnWidth.value ) on spnWidth buttondown do ( renderSceneDialog.close() renderWidth = spnWidth.value ) on spnWidth buttonup do ( renderSceneDialog.close() renderWidth = spnWidth.value )
Comment