]> git.sur5r.net Git - i3/i3/blobdiff - src/click.c
Use con_orientation instead of ternary operator
[i3/i3] / src / click.c
index f4727f28f67a2640cc3c05405cee3e29ea8e7485..656fb8db399d03bb0b6c3b9da4cbf4afd05177f1 100644 (file)
@@ -233,7 +233,7 @@ static int route_click(Con *con, xcb_button_press_event_t *event, const bool mod
          event->detail == XCB_BUTTON_SCROLL_LEFT ||
          event->detail == XCB_BUTTON_SCROLL_RIGHT)) {
         DLOG("Scrolling on a window decoration\n");
-        orientation_t orientation = (con->parent->layout == L_STACKED ? VERT : HORIZ);
+        orientation_t orientation = con_orientation(con->parent);
         /* Use the focused child of the tabbed / stacked container, not the
          * container the user scrolled on. */
         Con *focused = con->parent;