diff options
author | Robin Gareus <robin@gareus.org> | 2014-09-28 00:16:15 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-12-16 16:27:04 -0500 |
commit | c136194b24c013977e95d53c62d712e721d21661 (patch) | |
tree | 933a41d5b0775fc3576fb167a2cf62e0cbea1991 /pugl/pugl_x11.c | |
parent | d90fd25f149058a518acc088d4d72fffdacf40a0 (diff) |
Never redisplay after close.
Conflicts:
pugl/pugl_x11.c
Diffstat (limited to 'pugl/pugl_x11.c')
-rw-r--r-- | pugl/pugl_x11.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c index 838980b..e0852be 100644 --- a/pugl/pugl_x11.c +++ b/pugl/pugl_x11.c @@ -250,6 +250,7 @@ puglDestroy(PuglView* view) XCloseDisplay(view->impl->display); free(view->impl); free(view); + view = NULL; } static PuglKey @@ -438,6 +439,7 @@ puglProcessEvents(PuglView* view) xevent.xclient.message_type); if (!strcmp(type, "WM_PROTOCOLS") && view->closeFunc) { view->closeFunc(view); + view->redisplay = false; } XFree(type); continue; |