diff options
author | David Robillard <d@drobilla.net> | 2021-05-08 13:42:37 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-05-08 14:29:42 -0400 |
commit | fcce346e6787875e6526efea89e74055e447f889 (patch) | |
tree | 3fa0589c678e1142bfa9a42ef939ae43c92d0e78 /test | |
parent | 17ad5fd72bd51c5324b8e52e1f55020d5a97944a (diff) | |
download | pugl-fcce346e6787875e6526efea89e74055e447f889.tar.gz pugl-fcce346e6787875e6526efea89e74055e447f889.tar.bz2 pugl-fcce346e6787875e6526efea89e74055e447f889.zip |
Send unmap/map events when the view is minimized/restored
X11 Window managers set WM_STATE to notify about minimization, often without
sending core X visibility events (which seems odd to me, but that's what Gnome
does anyway). So, implement this protocol and send map/unmap events to the
view, and adjust the Windows implementation to do the same for consistency
across all platforms.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_show_hide.c | 2 | ||||
-rw-r--r-- | test/test_update.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/test_show_hide.c b/test/test_show_hide.c index 2294709..b624735 100644 --- a/test/test_show_hide.c +++ b/test/test_show_hide.c @@ -75,7 +75,7 @@ onEvent(PuglView* view, const PuglEvent* event) test->state = EXPOSED; break; case PUGL_UNMAP: - assert(test->state == EXPOSED); + assert(test->state == MAPPED || test->state == EXPOSED); test->state = UNMAPPED; break; case PUGL_DESTROY: diff --git a/test/test_update.c b/test/test_update.c index d9c02ab..39415bc 100644 --- a/test/test_update.c +++ b/test/test_update.c @@ -75,8 +75,8 @@ onEvent(PuglView* view, const PuglEvent* event) case PUGL_UPDATE: if (test->state == EXPOSED1) { - puglPostRedisplay(view); test->state = UPDATED; + puglPostRedisplay(view); } break; |