aboutsummaryrefslogtreecommitdiffstats
path: root/src/window-xlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window-xlib.c')
-rw-r--r--src/window-xlib.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/window-xlib.c b/src/window-xlib.c
index f59ea5e..aeb8759 100644
--- a/src/window-xlib.c
+++ b/src/window-xlib.c
@@ -427,14 +427,11 @@ static void runes_window_backend_flush(RunesTerm *t)
static void runes_window_backend_visual_bell(RunesTerm *t)
{
RunesWindowBackend *w = &t->w;
- cairo_pattern_t *white;
struct timespec tm = { 0, 20000000 };
runes_window_backend_set_urgent(t);
- white = cairo_pattern_create_rgb(1.0, 1.0, 1.0);
- cairo_set_source(t->backend_cr, white);
+ cairo_set_source(t->backend_cr, t->fgdefault);
cairo_paint(t->backend_cr);
- cairo_pattern_destroy(white);
cairo_surface_flush(cairo_get_target(t->backend_cr));
XFlush(w->dpy);
nanosleep(&tm, NULL);