summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-27 04:31:50 +0000
committerDavid Robillard <d@drobilla.net>2014-08-27 04:31:50 +0000
commitf25f829a3038db39c83ad8cc92dd5fdc4876751b (patch)
tree21d272c77694def08d331501d93079558d0bf782
parentc6062306426815e67151fd7efb6b50515f2c9ca2 (diff)
Fix puglInitResizable().
-rw-r--r--pugl/pugl_internal.h2
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