I have it small code for opening internal dialog, yes, it worked normally and stable.

But, when i open it dialog, i can move dialog in app frame. I want to do it window no movable.
How i can make it internal window set not movable? Code of dialog view:

I just committed a feature that allows you to specify if you want the internal window to be movable or not. The default is still movable, but you can now do openInternalWindow<SettingsView>(movable = false).
Also note the new syntax with a type parameter instead of a class parameter. Looks much nicer :)
Wow, so fast and cool, thanks for attention @edvin ! :), I use it ;) :+1:
My pleasure :)
Most helpful comment
I just committed a feature that allows you to specify if you want the internal window to be movable or not. The default is still movable, but you can now do
openInternalWindow<SettingsView>(movable = false).Also note the new syntax with a type parameter instead of a class parameter. Looks much nicer :)