Using this sample [resizable](https://github.com/tauri-apps/tao/blob/dev/examples/resizable.rs) When starting with ```rs let mut resizable = true; let window = WindowBuilder::new() .with_title("Hit space to toggle resizability.") .with_inner_size(LogicalSize::new(220.0, 90.0)) .with_resizable(resizable) .build(&event_loop) .unwrap(); ``` It starts out at the correct size, but when pressing space (triggering resizable change), window size is forced to 200px height