From 30b6584de1ef77143a4d46dea3ecfcb3778763e3 Mon Sep 17 00:00:00 2001 From: "Kacper Kowalik (Xarthisius)" Date: Sun, 19 Apr 2015 10:26:10 -0500 Subject: [PATCH] =?utf8?q?Fix=20=E2=80=98FALSE=E2=80=99=20undeclared=20(fi?= =?utf8?q?rst=20use=20in=20this=20function)=20when=20i3=20is=20built=20wit?= =?utf8?q?hout=20PANGO=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/handlers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers.c b/src/handlers.c index c80c279e..1c3d10f4 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -880,7 +880,7 @@ static void handle_client_message(xcb_client_message_event_t *event) { floating_drag_window(con->parent, &fake); break; case _NET_WM_MOVERESIZE_SIZE_TOPLEFT... _NET_WM_MOVERESIZE_SIZE_LEFT: - floating_resize_window(con->parent, FALSE, &fake); + floating_resize_window(con->parent, false, &fake); break; default: DLOG("_NET_WM_MOVERESIZE direction %d not implemented\n", direction); -- 2.39.5