Currently we specify some arbitrary, default dimensions for windows in nannou/src/window.rs.
I think the idea was to ensure consistency across different platforms, regardless of the platform's defaults. However, this can have issues in the case that the user uses a window tiling manager, or tries to run a sketch on mobile.
Instead, we should just use the defaults provided by the OS and allow the user to specify fixed dimensions if required.
Currently we specify some arbitrary, default dimensions for windows in
nannou/src/window.rs
.I think the idea was to ensure consistency across different platforms, regardless of the platform's defaults. However, this can have issues in the case that the user uses a window tiling manager, or tries to run a sketch on mobile.
Instead, we should just use the defaults provided by the OS and allow the user to specify fixed dimensions if required.