diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-02-01 09:30:09 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-02-01 09:30:09 +0100 |
| commit | 96fd8a5f7a78730465a3fc3dcdab90b508bbab43 (patch) | |
| tree | 3be7ddcc491bb9deebc539482367d7a5e41269dd | |
| parent | 94c918a1aee72a1b906790873a8ed57e47b733fe (diff) | |
Wayland: use fl_wl_find() instead of fl_find()
| -rw-r--r-- | src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx b/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx index 6503f76fe..3cd02dcf6 100644 --- a/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx +++ b/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx @@ -527,7 +527,7 @@ static void wl_keyboard_enter(void *data, struct wl_keyboard *wl_keyboard, Fl_Window *win = Fl_Wayland_Screen_Driver::surface_to_window(surface); if (win) { Fl::handle(FL_FOCUS, win); - fl_find(fl_xid(win)); + fl_wl_find(fl_wl_xid(win)); } } |
