diff options
author | David Robillard <d@drobilla.net> | 2022-05-20 14:21:28 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-21 15:33:21 -0400 |
commit | 66f2133d2b6293f62729d4665124094990441320 (patch) | |
tree | e648ccf01f4de96b5b3fd32fae7d8242c88b885c /test/test_local_copy_paste.c | |
parent | fd446ed67d9b697a150a59fa6746555af283127d (diff) | |
download | pugl-66f2133d2b6293f62729d4665124094990441320.tar.gz pugl-66f2133d2b6293f62729d4665124094990441320.tar.bz2 pugl-66f2133d2b6293f62729d4665124094990441320.zip |
Set a title for all test windows
Diffstat (limited to 'test/test_local_copy_paste.c')
-rw-r--r-- | test/test_local_copy_paste.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_local_copy_paste.c b/test/test_local_copy_paste.c index 0a1b212..a4350f0 100644 --- a/test/test_local_copy_paste.c +++ b/test/test_local_copy_paste.c @@ -90,6 +90,7 @@ main(int argc, char** argv) // Set up view app.view = puglNewView(app.world); puglSetClassName(app.world, "PuglTest"); + puglSetWindowTitle(app.view, "Pugl Copy/Paste Test"); puglSetBackend(app.view, puglStubBackend()); puglSetHandle(app.view, &app); puglSetEventFunc(app.view, onEvent); |