Merge pull request #1666 from Xarthisius/undef_FALSE

Fix ‘FALSE’ undeclared (first use in this function) when i3 is built w/o PANGO
This commit is contained in:
Michael Stapelberg 2015-04-21 08:29:55 +02:00
commit 14cf2e5a27
1 changed files with 1 additions and 1 deletions

View 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);