We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb616a commit 905bf39Copy full SHA for 905bf39
src/flutter/shell/platform/linux_embedded/window/elinux_window_wayland.cc
@@ -282,6 +282,12 @@ const wl_pointer_listener ELinuxWindowWayland::kWlPointerListener = {
282
self->wl_current_surface_ = surface;
283
self->serial_ = serial;
284
285
+ if (self->view_properties_.use_mouse_cursor) {
286
+ // Clear the cursor name in order to make sure it gets redrawn next time
287
+ // it enters the surface.
288
+ self->cursor_info_.cursor_name.clear();
289
+ }
290
+
291
if (self->binding_handler_delegate_) {
292
self->binding_handler_delegate_->OnPointerLeave();
293
self->pointer_x_ = -1;
0 commit comments