aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOrestis Floros <orestisflo@gmail.com>2020-03-31 08:52:53 +0200
committerOrestis Floros <orestisflo@gmail.com>2020-03-31 08:52:53 +0200
commit1a2882d740ecc01312cf26ea5fac608077af7386 (patch)
treebb4ff14ec941bff21de790dd730b617a537ef9ed
parent164336099d731456448fd1150c3993f08c82dcc4 (diff)
downloadi3-1a2882d740ecc01312cf26ea5fac608077af7386.tar.gz
i3-1a2882d740ecc01312cf26ea5fac608077af7386.zip
Avoid resizing fullscreen container
Fixes #3980
-rw-r--r--src/click.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/click.c b/src/click.c
index 19076252..f038f290 100644
--- a/src/click.c
+++ b/src/click.c
@@ -275,6 +275,11 @@ static int route_click(Con *con, xcb_button_press_event_t *event, const bool mod
goto done;
}
+ if (fs) {
+ /* Fullscreen container exists, avoid resizes */
+ goto done;
+ }
+
/* 7: floating modifier pressed, initiate a resize */
if (dest == CLICK_INSIDE && mod_pressed && event->detail == XCB_BUTTON_CLICK_RIGHT) {
if (floating_mod_on_tiled_client(con, event))