diff options
author | David Robillard <d@drobilla.net> | 2021-02-01 01:03:46 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-02-01 01:03:46 +0100 |
commit | fadf8abb53034ae9517de70e2f04c05b4342df38 (patch) | |
tree | 3863ca10102aa913398143fde18f6d5e1113872f /examples/pugl_cursor_demo.c | |
parent | 2d3100e47eee6a8bf2209ee19157de6d23dd1c55 (diff) | |
download | pugl-fadf8abb53034ae9517de70e2f04c05b4342df38.tar.gz pugl-fadf8abb53034ae9517de70e2f04c05b4342df38.tar.bz2 pugl-fadf8abb53034ae9517de70e2f04c05b4342df38.zip |
Set maximum size in example programs
Diffstat (limited to 'examples/pugl_cursor_demo.c')
-rw-r--r-- | examples/pugl_cursor_demo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/pugl_cursor_demo.c b/examples/pugl_cursor_demo.c index 60ec3d3..97e3b9f 100644 --- a/examples/pugl_cursor_demo.c +++ b/examples/pugl_cursor_demo.c @@ -139,6 +139,7 @@ main(int argc, char** argv) puglSetWindowTitle(view, "Pugl Window Demo"); puglSetDefaultSize(view, 512, 256); puglSetMinSize(view, 128, 64); + puglSetMaxSize(view, 512, 256); puglSetBackend(view, puglGlBackend()); puglSetViewHint(view, PUGL_USE_DEBUG_CONTEXT, app.opts.errorChecking); |