]> git.sur5r.net Git - i3/i3/commit
Fix: render_con shows floating containers on wrong workspace
authorOrestis Floros <orestisf1993@gmail.com>
Sun, 16 Dec 2018 01:27:09 +0000 (03:27 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 23 Jan 2019 20:30:52 +0000 (21:30 +0100)
commitf7b6ae2836086ed72dde6c44b7ad5d8c918b165b
tree688c6f77166316d914f6f834044d2c18b941d869
parentf0e19d112c4367d99875eeefbc09d81dbf108501
Fix: render_con shows floating containers on wrong workspace

After 204eefc. Alternative fix:
    diff --git a/src/floating.c b/src/floating.c
    index f5c61782..6dd79668 100644
    --- a/src/floating.c
    +++ b/src/floating.c
    @@ -954,7 +954,7 @@ bool floating_reposition(Con *con, Rect newrect) {
             con->scratchpad_state = SCRATCHPAD_CHANGED;

         /* Workspace change will already result in a tree_render. */
    -    if (!reassigned) {
    +    if (!reassigned && workspace_is_visible(con_get_workspace(con))) {
             render_con(con);
             x_push_node(con);
         }
but I don't think that the extra complexity is worth it.

Change in handlers.c because of d2d6d6e0 where the bug also appears.

Fixes #3567
src/floating.c