File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -215,6 +215,7 @@ where
215
215
}
216
216
}
217
217
218
+ shell. request_redraw ( ) ;
218
219
shell. capture_event ( ) ;
219
220
}
220
221
Event :: Mouse ( mouse:: Event :: ButtonPressed ( mouse:: Button :: Left ) ) => {
@@ -226,13 +227,16 @@ where
226
227
227
228
state. cursor_grabbed_at = Some ( cursor_position) ;
228
229
state. starting_offset = state. current_offset ;
230
+
231
+ shell. request_redraw ( ) ;
229
232
shell. capture_event ( ) ;
230
233
}
231
234
Event :: Mouse ( mouse:: Event :: ButtonReleased ( mouse:: Button :: Left ) ) => {
232
235
let state = tree. state . downcast_mut :: < State > ( ) ;
233
236
234
237
if state. cursor_grabbed_at . is_some ( ) {
235
238
state. cursor_grabbed_at = None ;
239
+ shell. request_redraw ( ) ;
236
240
shell. capture_event ( ) ;
237
241
}
238
242
}
@@ -273,6 +277,7 @@ where
273
277
} ;
274
278
275
279
state. current_offset = Vector :: new ( x, y) ;
280
+ shell. request_redraw ( ) ;
276
281
shell. capture_event ( ) ;
277
282
}
278
283
}
You can’t perform that action at this time.
0 commit comments