summaryrefslogtreecommitdiff
path: root/pugl_test.c
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-09-28 22:00:30 +0200
committerDavid Robillard <d@drobilla.net>2014-12-16 18:31:22 -0500
commit2e07e028c1080051846b1b200493e528a8f9a5e6 (patch)
tree61db9c5aba47555204d1b054662ac1954008d256 /pugl_test.c
parent3fa6c2c10f7d4ca06fd30e2442dcd25f492cc351 (diff)
Support minimum window size.
Conflicts: pugl/pugl_win.cpp
Diffstat (limited to 'pugl_test.c')
-rw-r--r--pugl_test.c1
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);