diff options
author | David Robillard <d@drobilla.net> | 2014-08-27 04:31:50 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-27 04:31:50 +0000 |
commit | f25f829a3038db39c83ad8cc92dd5fdc4876751b (patch) | |
tree | 21d272c77694def08d331501d93079558d0bf782 /pugl/pugl_internal.h | |
parent | c6062306426815e67151fd7efb6b50515f2c9ca2 (diff) |
Fix puglInitResizable().
Diffstat (limited to 'pugl/pugl_internal.h')
-rw-r--r-- | pugl/pugl_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_internal.h b/pugl/pugl_internal.h index e7c667e..b86533a 100644 --- a/pugl/pugl_internal.h +++ b/pugl/pugl_internal.h @@ -106,7 +106,7 @@ puglInitWindowParent(PuglView* view, PuglNativeWindow parent) void puglInitResizable(PuglView* view, bool resizable) { - view->resizable = true; + view->resizable = resizable; } void |