fix: just use 0 for position of blur rectangle

This commit is contained in:
Ashley Wulber 2026-04-14 23:18:44 -04:00 committed by Ashley Wulber
parent 1bf1e33317
commit 13b8d3eab6

View file

@ -292,8 +292,8 @@ impl winit::window::Window for SctkWinitWindow {
self.id.inner(),
if blur {
Some(vec![iced_runtime::core::Rectangle {
x: f32::MIN,
y: f32::MIN,
x: 0.,
y: 0.,
width: f32::MAX,
height: f32::MAX,
}])