Is your issue REALLY a bug?
Is there an existing issue for this?
Is this issue related to iced?
What happened?
If a window has decorations disabled, you cannot resize it.
Example window:
iced::application(boot, update, view)
.subscription(subscription)
.antialiasing(true)
.title("nk2view")
.window(iced::window::Settings {
size: [364.0, 90.0].into(),
position: Default::default(),
min_size: Some([120.0, 60.0].into()),
max_size: None,
resizable: true,
decorations: false,
platform_specific: iced::window::settings::PlatformSpecific {
undecorated_shadow: true,
corner_preference: iced::window::settings::platform::CornerPreference::DoNotRound,
..Default::default()
},
..Default::default()
})
.run()
What is the expected behavior?
The window should be resizable
Version
crates.io release
Operating System
Windows
Do you have any log output?
Is your issue REALLY a bug?
Is there an existing issue for this?
Is this issue related to iced?
What happened?
If a window has decorations disabled, you cannot resize it.
Example window:
What is the expected behavior?
The window should be resizable
Version
crates.io release
Operating System
Windows
Do you have any log output?