diff options
author | Robin Gareus <robin@gareus.org> | 2014-09-28 22:00:30 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-12-16 18:31:22 -0500 |
commit | 2e07e028c1080051846b1b200493e528a8f9a5e6 (patch) | |
tree | 61db9c5aba47555204d1b054662ac1954008d256 /pugl_test.c | |
parent | 3fa6c2c10f7d4ca06fd30e2442dcd25f492cc351 (diff) | |
download | pugl-2e07e028c1080051846b1b200493e528a8f9a5e6.tar.gz pugl-2e07e028c1080051846b1b200493e528a8f9a5e6.tar.bz2 pugl-2e07e028c1080051846b1b200493e528a8f9a5e6.zip |
Support minimum window size.
Conflicts:
pugl/pugl_win.cpp
Diffstat (limited to 'pugl_test.c')
-rw-r--r-- | pugl_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pugl_test.c b/pugl_test.c index aa7997d..9b942f4 100644 --- a/pugl_test.c +++ b/pugl_test.c @@ -170,6 +170,7 @@ main(int argc, char** argv) PuglView* view = puglInit(NULL, NULL); puglInitWindowSize(view, 512, 512); + puglInitWindowMinSize(view, 256, 256); puglInitResizable(view, resizable); puglIgnoreKeyRepeat(view, ignoreKeyRepeat); |