You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful to add a new setting in Configuration to enable always starting in Center Screen. Sdl2Native.SDL_WINDOWPOS_CENTERED can then be passed into the new Sdl2Window call in place of config.NormalWindowBounds.X/Y. This would avoid the user having to always calculate the center point and allow SDL to handle the work for them.
The text was updated successfully, but these errors were encountered:
Currently the Window start location is defined in the first 2 fields of the
Configuration.NormalWindowbounds
Rect (50, 50) which is then used for the Window creation inWindow.Backend
at https://github.com/themeldingwars/ImTool/blob/master/ImTool/Window.Backend.cs#L81It would be useful to add a new setting in Configuration to enable always starting in Center Screen.
Sdl2Native.SDL_WINDOWPOS_CENTERED
can then be passed into thenew Sdl2Window
call in place ofconfig.NormalWindowBounds.
X
/Y
. This would avoid the user having to always calculate the center point and allow SDL to handle the work for them.The text was updated successfully, but these errors were encountered: