Don't draw on backbuffer, when hiding (thx sECuRE)
This commit is contained in:
parent
1b2002e1c8
commit
682458f4d7
|
@ -220,6 +220,8 @@ void unhide_bars() {
|
|||
return;
|
||||
}
|
||||
|
||||
draw_bars();
|
||||
|
||||
i3_output *walk;
|
||||
xcb_void_cookie_t cookie;
|
||||
uint32_t mask;
|
||||
|
@ -882,6 +884,9 @@ void reconfig_windows() {
|
|||
*
|
||||
*/
|
||||
void draw_bars() {
|
||||
if (config.hide_on_modifier && !mod_pressed) {
|
||||
return;
|
||||
}
|
||||
DLOG("Drawing Bars...\n");
|
||||
int i = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue