bugfix: focus container on output when focused

Focus the container on the output (not the output itself) when an output is
focused.

This is intended to fix a bug where borders are not updated correctly when
switching the vt away/back to sway.
This commit is contained in:
Tony Crisci 2016-08-01 23:56:34 -04:00
parent a4096b73c9
commit 4344fe5011

View File

@ -226,7 +226,7 @@ static void handle_output_focused(wlc_handle output, bool focus) {
handle_output_created(output); handle_output_created(output);
} }
if (focus) { if (focus) {
set_focused_container(c); set_focused_container(get_focused_container(c));
} }
} }