Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'vanilla/next' into gaps-next
Browse files Browse the repository at this point in the history
  • Loading branch information
Airblader committed Feb 8, 2021
2 parents 743e7ff + 5df0b4b commit 3e02620
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES-next
Expand Up @@ -33,3 +33,4 @@ strongly encouraged to upgrade.
• i3bar: properly restart status command after config change
• i3bar: exit with 1 when a wrong command line argument is used
• fix commented-out rofi call in default i3 config
• clear pixmap before drawing to prevent visual garbage
3 changes: 3 additions & 0 deletions src/x.c
Expand Up @@ -537,6 +537,9 @@ void x_draw_decoration(Con *con) {

/* 2: draw the client.background, but only for the parts around the window_rect */
if (con->window != NULL) {
/* Clear visible windows before beginning to draw */
draw_util_clear_surface(&(con->frame_buffer), (color_t){.red = 0.0, .green = 0.0, .blue = 0.0});

/* top area */
draw_util_rectangle(&(con->frame_buffer), config.client.background,
0, 0, r->width, w->y);
Expand Down

0 comments on commit 3e02620

Please sign in to comment.