From 951882adaaaeff4c2809fe37a041e15c77d4485a Mon Sep 17 00:00:00 2001 From: Cedric Roux <cedric.roux@eurecom.fr> Date: Sun, 1 May 2016 14:09:20 +0200 Subject: [PATCH] redraw window when receiving MapNotify (not sure if correct) --- common/utils/T/tracer/gui/x.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/utils/T/tracer/gui/x.c b/common/utils/T/tracer/gui/x.c index 50164dce3..68869d6e0 100644 --- a/common/utils/T/tracer/gui/x.c +++ b/common/utils/T/tracer/gui/x.c @@ -151,6 +151,7 @@ printf("x_events START\n"); XNextEvent(x->d, &ev); printf("XEV %d\n", ev.type); switch (ev.type) { + case MapNotify: case Expose: if ((w = find_x_window(g, ev.xexpose.window)) != NULL) { struct x_window *xw = w->x; -- GitLab