diff options
Diffstat (limited to 'examples/pugl_embed_demo.c')
-rw-r--r-- | examples/pugl_embed_demo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pugl_embed_demo.c b/examples/pugl_embed_demo.c index 3b80110..7efba81 100644 --- a/examples/pugl_embed_demo.c +++ b/examples/pugl_embed_demo.c @@ -304,8 +304,8 @@ main(int argc, char** argv) return logError("Failed to create child window (%s)\n", puglStrerror(st)); } - puglShow(app.parent, PUGL_SHOW_PASSIVE); - puglShow(app.child, PUGL_SHOW_PASSIVE); + puglShow(app.parent, PUGL_SHOW_RAISE); + puglShow(app.child, PUGL_SHOW_RAISE); puglStartTimer(app.child, reverseTimerId, 3.6); |