Wayland DnD: make insertion cursor follow DnD cursor.

This commit is contained in:
ManoloFLTK 2022-11-04 15:06:45 +01:00
parent da96fa0ddf
commit 425bd5865d
1 changed files with 1 additions and 0 deletions

View File

@ -440,6 +440,7 @@ static void data_device_handle_motion(void *data, struct wl_data_device *data_de
Fl::e_x_root = Fl::e_x + fl_dnd_target_window->x();
Fl::e_y_root = Fl::e_y + fl_dnd_target_window->y();
ret = Fl::handle(FL_DND_DRAG, fl_dnd_target_window);
if (Fl::belowmouse()) Fl::belowmouse()->take_focus();
}
uint32_t supported_actions = ret && (Fl::pushed() || !doing_dnd) ? WL_DATA_DEVICE_MANAGER_DND_ACTION_COPY : WL_DATA_DEVICE_MANAGER_DND_ACTION_NONE;
uint32_t preferred_action = supported_actions;