1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-15 19:56:55 +00:00

Compare commits

..

3 Commits

Author SHA1 Message Date
pull[bot]
a72a61130f
Merge 0ce4eaebb7 into c43582e917 2025-01-01 13:19:41 +00:00
Brenden Matthews
0ce4eaebb7 Bump version 2025-01-01 08:19:38 -05:00
Leo Chung
79e68cc730 wayland: fix clean_text bug
The current wayland display's clean_text function is missing
cairo_fill to actually clear the background, causing the text to overlap.

Signed-off-by: Leo Chung <gewalalb@gmail.com>
2025-01-01 08:05:09 -05:00
2 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,7 @@ endif(OS_HAIKU)
# Do version stuff
set(VERSION_MAJOR "1")
set(VERSION_MINOR "22")
set(VERSION_PATCH "0")
set(VERSION_PATCH "1")
find_program(APP_AWK awk)

View File

@ -926,6 +926,7 @@ void display_output_wayland::clear_text(int exposures) {
cairo_set_operator(window->cr, CAIRO_OPERATOR_CLEAR);
cairo_rectangle(window->cr, 0, 0, window->rectangle.width(),
window->rectangle.height());
cairo_fill(window->cr);
cairo_restore(window->cr);
}