From: Michael Stapelberg Date: Thu, 27 Sep 2012 10:41:38 +0000 (+0200) Subject: raise floating windows when focusing (Thanks Marcos) X-Git-Tag: 4.4~103 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=064be457e59603e1d4a4b45b4bf138dcc231a849;p=i3%2Fi3 raise floating windows when focusing (Thanks Marcos) --- diff --git a/src/tree.c b/src/tree.c index 3d598d50..657c8bfa 100644 --- a/src/tree.c +++ b/src/tree.c @@ -529,6 +529,7 @@ static bool _tree_next(Con *con, char way, orientation_t orientation, bool wrap) if (!next) return false; + floating_raise_con(next); con_focus(con_descend_focused(next)); return true; } else {