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:
commit
14cf2e5a27
|
@ -880,7 +880,7 @@ static void handle_client_message(xcb_client_message_event_t *event) {
|
||||||
floating_drag_window(con->parent, &fake);
|
floating_drag_window(con->parent, &fake);
|
||||||
break;
|
break;
|
||||||
case _NET_WM_MOVERESIZE_SIZE_TOPLEFT... _NET_WM_MOVERESIZE_SIZE_LEFT:
|
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;
|
break;
|
||||||
default:
|
default:
|
||||||
DLOG("_NET_WM_MOVERESIZE direction %d not implemented\n", direction);
|
DLOG("_NET_WM_MOVERESIZE direction %d not implemented\n", direction);
|
||||||
|
|
Loading…
Reference in New Issue