]> git.sur5r.net Git - i3/i3/commitdiff
Merge pull request #1666 from Xarthisius/undef_FALSE
authorMichael Stapelberg <stapelberg@users.noreply.github.com>
Tue, 21 Apr 2015 06:29:55 +0000 (08:29 +0200)
committerMichael Stapelberg <stapelberg@users.noreply.github.com>
Tue, 21 Apr 2015 06:29:55 +0000 (08:29 +0200)
Fix ‘FALSE’ undeclared (first use in this function) when i3 is built w/o PANGO

src/handlers.c

index c80c279efe43857b83e9a4e4246e72f3681dc5cb..1c3d10f4fc8ad1d7ba6c5bbccdfa5afdbf3ec152 100644 (file)
@@ -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);