Skip to content

Commit 940a079

Browse files
authored
Merge pull request #2795 from tarkah/fix/image-viewer-redraw
Request redraw in image viewer update
2 parents 4bbb5cb + a8b1aef commit 940a079

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

widget/src/image/viewer.rs

+5
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ where
215215
}
216216
}
217217

218+
shell.request_redraw();
218219
shell.capture_event();
219220
}
220221
Event::Mouse(mouse::Event::ButtonPressed(mouse::Button::Left)) => {
@@ -226,13 +227,16 @@ where
226227

227228
state.cursor_grabbed_at = Some(cursor_position);
228229
state.starting_offset = state.current_offset;
230+
231+
shell.request_redraw();
229232
shell.capture_event();
230233
}
231234
Event::Mouse(mouse::Event::ButtonReleased(mouse::Button::Left)) => {
232235
let state = tree.state.downcast_mut::<State>();
233236

234237
if state.cursor_grabbed_at.is_some() {
235238
state.cursor_grabbed_at = None;
239+
shell.request_redraw();
236240
shell.capture_event();
237241
}
238242
}
@@ -273,6 +277,7 @@ where
273277
};
274278

275279
state.current_offset = Vector::new(x, y);
280+
shell.request_redraw();
276281
shell.capture_event();
277282
}
278283
}

0 commit comments

Comments
 (0)