]> git.sur5r.net Git - i3/i3/commitdiff
Skip dragging of floating cons in fullscreen mode
authorYves Fischer <yvesf-git@xapek.org>
Thu, 22 Sep 2011 20:22:37 +0000 (22:22 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 22 Sep 2011 22:10:48 +0000 (23:10 +0100)
src/click.c

index acfcad893f4ddb1c2da297e3a6f99223cf8dd558..c270bdecdef3affe71ea3eb28f211ff8333f6549 100644 (file)
@@ -178,8 +178,11 @@ static int route_click(Con *con, xcb_button_press_event_t *event, bool mod_press
     /* 2: focus this con */
     con_focus(con);
 
-    /* 3: for floating containers, we also want to raise them on click */
-    if (floatingcon != NULL) {
+    /* 3: For floating containers, we also want to raise them on click.
+     * We will skip handling events on floating cons in fullscreen mode */
+    Con *ws = con_get_workspace(con);
+    Con *fs = (ws ? con_get_fullscreen_con(ws, CF_OUTPUT) : NULL);
+    if (floatingcon != NULL && fs == NULL) {
         floating_raise_con(floatingcon);
 
         /* 4: floating_modifier plus left mouse button drags */