diff options
author | David Robillard <d@drobilla.net> | 2023-01-08 01:02:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-08 01:06:37 -0500 |
commit | 92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4 (patch) | |
tree | aa91ae18efac00651f73efef51173edbcc00489f /test/test_remote_copy_paste.c | |
parent | 14b35ef217f5ee387c4f33b1b24bebb015e18f23 (diff) | |
download | pugl-92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4.tar.gz pugl-92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4.tar.bz2 pugl-92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4.zip |
Add support for raising windows
Diffstat (limited to 'test/test_remote_copy_paste.c')
-rw-r--r-- | test/test_remote_copy_paste.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_remote_copy_paste.c b/test/test_remote_copy_paste.c index 828992d..0abcb73 100644 --- a/test/test_remote_copy_paste.c +++ b/test/test_remote_copy_paste.c @@ -161,8 +161,8 @@ main(int argc, char** argv) puglSetPosition(app.pasterView, 512, 512); // Create and show both views - assert(!puglShow(app.copierView)); - assert(!puglShow(app.pasterView)); + assert(!puglShow(app.copierView, PUGL_SHOW_PASSIVE)); + assert(!puglShow(app.pasterView, PUGL_SHOW_PASSIVE)); // Run until the test is finished while (app.state != FINISHED) { |