From 21f7b7a724f46a6fe363971ec902d5dc07b8ac2a Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 15 Mar 2009 21:31:35 +0100 Subject: [PATCH] Disable horizontal resizing for the release version, it still has bugs --- src/handlers.c | 7 +++++++ 1 file changed, 7 insertions(+) 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]; -- 2.39.5