windowhandle: Quiet a compiler warning

gesture was left uninitialized in the default case.
This commit is contained in:
Matthias Clasen 2021-08-22 14:17:36 -04:00
parent 5444f604cb
commit 7be3c2974a

View File

@ -343,7 +343,7 @@ perform_titlebar_action (GtkWindowHandle *self,
gesture = GDK_TITLEBAR_GESTURE_RIGHT_CLICK; gesture = GDK_TITLEBAR_GESTURE_RIGHT_CLICK;
break; break;
default: default:
break; return FALSE;
} }
if (gdk_toplevel_titlebar_gesture (GDK_TOPLEVEL (surface), gesture)) if (gdk_toplevel_titlebar_gesture (GDK_TOPLEVEL (surface), gesture))