]> git.sur5r.net Git - i3/i3/commitdiff
Remove unnecessary code in route_click()
authorAlbert Safin <xzfcpw@gmail.com>
Thu, 6 Dec 2018 15:39:57 +0000 (22:39 +0700)
committerAlbert Safin <xzfcpw@gmail.com>
Sun, 9 Dec 2018 00:48:40 +0000 (07:48 +0700)
This case is handled by resize_find_tiling_participants() anyway which
is introduced in the commit dbec5eb90585bc22752331f51d8a6bc90d21889c.

src/click.c

index 1218a4c21be5864517224fc063d61f71aefc8da2..58ebbf3d851053330dafe1bab389f36d93d518e5 100644 (file)
@@ -302,12 +302,6 @@ static int route_click(Con *con, xcb_button_press_event_t *event, const bool mod
         goto done;
     }
 
-    if (in_stacked) {
-        /* for stacked/tabbed cons, the resizing applies to the parent
-         * container */
-        con = con->parent;
-    }
-
     /* 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))