tools: draw the tablet before the touch points

On the Dell Canvas Totem, the tool will cancel existing touch points and to
visually debug that, we need the touchpoints to be drawn over the tool.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2019-02-13 10:15:29 +10:00
parent 5b85cf06d8
commit e038a22360

View file

@ -595,12 +595,12 @@ draw(GtkWidget *widget, cairo_t *cr, gpointer data)
draw_evdev_rel(w, cr);
draw_evdev_abs(w, cr);
draw_tablet(w, cr);
draw_gestures(w, cr);
draw_scrollbars(w, cr);
draw_touchpoints(w, cr);
draw_abs_pointer(w, cr);
draw_buttons(w, cr);
draw_tablet(w, cr);
draw_pointer(w, cr);
return TRUE;