aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_remote_copy_paste.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-01-09 12:11:33 -0500
committerDavid Robillard <d@drobilla.net>2023-01-09 12:11:33 -0500
commit4e81c178ed8665c2f37fd6f3a35cd1a31598bc8d (patch)
tree575ffc3b79424a44f5acd76ba3a156a1c49e15b3 /test/test_remote_copy_paste.c
parent87af385d3846d83a6e45f92c391265548a225964 (diff)
downloadpugl-4e81c178ed8665c2f37fd6f3a35cd1a31598bc8d.tar.gz
pugl-4e81c178ed8665c2f37fd6f3a35cd1a31598bc8d.tar.bz2
pugl-4e81c178ed8665c2f37fd6f3a35cd1a31598bc8d.zip
Raise test windows initially
This seems to make thing a bit more reliable, and matches what was happening before the addition of more precise show commands.
Diffstat (limited to 'test/test_remote_copy_paste.c')
-rw-r--r--test/test_remote_copy_paste.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_remote_copy_paste.c b/test/test_remote_copy_paste.c
index 0abcb73..e1cb0c9 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, PUGL_SHOW_PASSIVE));
- assert(!puglShow(app.pasterView, PUGL_SHOW_PASSIVE));
+ assert(!puglShow(app.copierView, PUGL_SHOW_RAISE));
+ assert(!puglShow(app.pasterView, PUGL_SHOW_RAISE));
// Run until the test is finished
while (app.state != FINISHED) {