sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 3f475f5009974a5dcdfe12f578208a4fd92c84ba
parent 47ec999e7184d29c2911af20ce696d1f4e948e29
Author: Luminarys <kizunanohikari@gmail.com>
Date:   Mon, 17 Aug 2015 10:22:00 -0500

Minor fix to do proper floating refocuses

Diffstat:
Msway/commands.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -231,6 +231,8 @@ static bool cmd_floating(struct sway_config *config, int argc, char **argv) { else { add_sibling(focused, view); } + // Refocus on the view once its been put back into the layout + focus_view(view); arrange_windows(active_workspace, -1, -1); return true; }