x: raise the stack decoration above the stack windows (reduces flickering)

This reduces flickering when opening new windows in a stack, see the comment.
next
Michael Stapelberg 2011-07-10 20:05:49 +02:00
parent 0d8dd571f8
commit 517833569d
1 changed files with 6 additions and 0 deletions

View File

@ -344,6 +344,12 @@ void render_con(Con *con, bool render_fullscreen) {
* aswell. */
render_con(child, false);
}
/* Raise the stack con itself. This will put the stack decoration on
* top of every stack window. That way, when a new window is opened in
* the stack, the old window will not obscure part of the decoration
* (its unmapped afterwards). */
x_raise_con(con);
}
}