From: Michael Stapelberg Date: Sun, 15 Mar 2009 20:31:35 +0000 (+0100) Subject: Disable horizontal resizing for the release version, it still has bugs X-Git-Tag: 3.a~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=21f7b7a724f46a6fe363971ec902d5dc07b8ac2a;p=i3%2Fi3 Disable horizontal resizing for the release version, it still has bugs --- diff --git a/src/handlers.c b/src/handlers.c index 00a7b06d..174b56c3 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -325,6 +325,13 @@ int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_ second = con->workspace->table[con->col+1][con->row]; } + /* FIXME: horizontal resizing causes empty spaces to exist */ + if (orientation == O_HORIZONTAL) { + LOG("Sorry, horizontal resizing is not yet activated due to creating layout bugs." + "If you are brave, enable the code for yourself and try fixing it.\n"); + return 1; + } + uint32_t mask = 0; uint32_t values[2];