aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOrestis Floros <orestisflo@gmail.com>2020-04-09 15:11:46 +0200
committerOrestis Floros <orestisflo@gmail.com>2020-04-09 15:11:46 +0200
commit4922b245c1d5bb5700b104b2c87c2d35a40e76cc (patch)
tree0b06acee47c4be277390d786412d28cd3078daaa
parent26cbca3d279d698a92e907d5cb95b32a7941f3fc (diff)
downloadi3-4922b245c1d5bb5700b104b2c87c2d35a40e76cc.tar.gz
i3-4922b245c1d5bb5700b104b2c87c2d35a40e76cc.zip
Revert "Avoid resizing fullscreen container"
This reverts commit 1a2882d740ecc01312cf26ea5fac608077af7386. As mentioned in https://github.com/i3/i3/issues/3980#issuecomment-611515497, this disables resizing children of fullscreen containers.
-rw-r--r--src/click.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/click.c b/src/click.c
index f038f290..19076252 100644
--- a/src/click.c
+++ b/src/click.c
@@ -275,11 +275,6 @@ 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))