diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-08-14 02:14:56 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-08-14 02:14:56 (GMT) |
commit | 506ed4e693a086eff0ffe9e49ded5ca2edc981d1 (patch) | |
tree | 5b9eeb844b881b253c9f6fa3c0b7642a9d9e54af /src/cgaladv.cc | |
parent | d2933590c23ae3a3d95bd1d2d74d03cdbb7897cc (diff) |
first step of dealing with issue #455
Diffstat (limited to 'src/cgaladv.cc')
-rw-r--r-- | src/cgaladv.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgaladv.cc b/src/cgaladv.cc index ee3d657..8fd030a 100644 --- a/src/cgaladv.cc +++ b/src/cgaladv.cc @@ -98,7 +98,7 @@ AbstractNode *CgaladvModule::instantiate(const Context *ctx, const ModuleInstant if ( va.size() >= 3 ) node->autosize[2] = va[2].toBool(); } else if ( autosize.type() == Value::BOOL ) { - node->autosize << true, true, true; + node->autosize << autosize.toBool(),autosize.toBool(),autosize.toBool(); } } |