window: Return pointer type from widget enter handler
diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c
index 043ea50..92b5f20 100644
--- a/clients/desktop-shell.c
+++ b/clients/desktop-shell.c
@@ -229,11 +229,13 @@
 	window_flush(window);
 }
 
-static void
+static int
 panel_launcher_enter_handler(struct widget *widget, struct input *input,
 			     uint32_t time, int32_t x, int32_t y, void *data)
 {
 	widget_schedule_redraw(widget);
+
+	return POINTER_LEFT_PTR;
 }
 
 static void
@@ -454,12 +456,14 @@
 	window_schedule_redraw(window);
 }
 
-static void
+static int
 unlock_dialog_widget_enter_handler(struct widget *widget,
 				   struct input *input, uint32_t time,
 				   int32_t x, int32_t y, void *data)
 {
 	widget_schedule_redraw(widget);
+
+	return POINTER_LEFT_PTR;
 }
 
 static void