summaryrefslogtreecommitdiffstats
path: root/widget
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-03 17:24:05 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-03 17:24:05 +0100
commit50eaef28447f453bc90133de19cff8b2bfee27de (patch)
treeeaa85242780846f22198dd02909a69815385f589 /widget
parent141290c7402a4e087ce18d60b210f4feeafcebee (diff)
parent0c0651de5b1722194d48c19cd645e747fb72ccb6 (diff)
downloadiced-50eaef28447f453bc90133de19cff8b2bfee27de.tar.gz
iced-50eaef28447f453bc90133de19cff8b2bfee27de.tar.bz2
iced-50eaef28447f453bc90133de19cff8b2bfee27de.zip
Merge branch 'master' into explore-input-method2
Diffstat (limited to 'widget')
-rw-r--r--widget/src/helpers.rs14
-rw-r--r--widget/src/scrollable.rs6
-rw-r--r--widget/src/stack.rs21
3 files changed, 24 insertions, 17 deletions
diff --git a/widget/src/helpers.rs b/widget/src/helpers.rs
index 17cf94cc..199b8fc0 100644
--- a/widget/src/helpers.rs
+++ b/widget/src/helpers.rs
@@ -871,16 +871,19 @@ where
shell.request_redraw();
}
+ let is_visible =
+ is_hovered || self.is_top_focused || self.is_top_overlay_active;
+
if matches!(
event,
Event::Mouse(
mouse::Event::CursorMoved { .. }
| mouse::Event::ButtonReleased(_)
)
- ) || is_hovered
- || self.is_top_focused
- || self.is_top_overlay_active
+ ) || is_visible
{
+ let redraw_request = shell.redraw_request();
+
self.top.as_widget_mut().update(
top_tree,
event.clone(),
@@ -891,6 +894,11 @@ where
shell,
viewport,
);
+
+ // Ignore redraw requests of invisible content
+ if !is_visible {
+ Shell::replace_redraw_request(shell, redraw_request);
+ }
};
if shell.is_event_captured() {
diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs
index 053b7df6..a51a8625 100644
--- a/widget/src/scrollable.rs
+++ b/widget/src/scrollable.rs
@@ -564,7 +564,8 @@ where
Event::Mouse(mouse::Event::CursorMoved { .. })
| Event::Touch(touch::Event::FingerMoved { .. }) => {
if let Some(scrollbar) = scrollbars.y {
- let Some(cursor_position) = cursor.position()
+ let Some(cursor_position) =
+ cursor.land().position()
else {
return;
};
@@ -636,7 +637,8 @@ where
match event {
Event::Mouse(mouse::Event::CursorMoved { .. })
| Event::Touch(touch::Event::FingerMoved { .. }) => {
- let Some(cursor_position) = cursor.position() else {
+ let Some(cursor_position) = cursor.land().position()
+ else {
return;
};
diff --git a/widget/src/stack.rs b/widget/src/stack.rs
index 12ed941d..d5cf1ecf 100644
--- a/widget/src/stack.rs
+++ b/widget/src/stack.rs
@@ -216,15 +216,15 @@ where
viewport: &Rectangle,
) {
let is_over = cursor.is_over(layout.bounds());
- let is_mouse_movement =
- matches!(event, Event::Mouse(mouse::Event::CursorMoved { .. }));
+ let end = self.children.len() - 1;
- for ((child, state), layout) in self
+ for (i, ((child, state), layout)) in self
.children
.iter_mut()
.rev()
.zip(tree.children.iter_mut().rev())
.zip(layout.children().rev())
+ .enumerate()
{
child.as_widget_mut().update(
state,
@@ -237,22 +237,19 @@ where
viewport,
);
- if is_over
- && !is_mouse_movement
- && cursor != mouse::Cursor::Unavailable
- {
+ if shell.is_event_captured() {
+ return;
+ }
+
+ if i < end && is_over && !cursor.is_levitating() {
let interaction = child.as_widget().mouse_interaction(
state, layout, cursor, viewport, renderer,
);
if interaction != mouse::Interaction::None {
- cursor = mouse::Cursor::Unavailable;
+ cursor = cursor.levitate();
}
}
-
- if shell.is_event_captured() {
- return;
- }
}
}