diff options
author | Nivesh Rajbhandari | 2012-04-17 10:19:20 -0700 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-04-17 10:19:20 -0700 |
commit | 2a87a750f06003fc62e8e0e73983e14ce24fc7a7 (patch) | |
tree | 9566a079910cd08542ac7b35e8bc417dcecf8d1e /js/lib/geom/geom-obj.js | |
parent | c253192a08b499ea7be46fa5438d273e51f7ec5a (diff) | |
download | ninja-2a87a750f06003fc62e8e0e73983e14ce24fc7a7.tar.gz |
IKNinja-1477 - Cannot preflight Fill color if WebGL Line shape is selected.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/lib/geom/geom-obj.js')
-rwxr-xr-x | js/lib/geom/geom-obj.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/js/lib/geom/geom-obj.js b/js/lib/geom/geom-obj.js index 2cde8a75..f2991bdb 100755 --- a/js/lib/geom/geom-obj.js +++ b/js/lib/geom/geom-obj.js | |||
@@ -47,6 +47,9 @@ var GeomObj = function GLGeomObj() { | |||
47 | this._fillMaterial = null; | 47 | this._fillMaterial = null; |
48 | this._strokeMaterial = null; | 48 | this._strokeMaterial = null; |
49 | 49 | ||
50 | // Shapes (such as lines) that don't support fill should set this to false | ||
51 | this.canFill = true; | ||
52 | |||
50 | // array of primitives - used in RDGE | 53 | // array of primitives - used in RDGE |
51 | this._primArray = []; | 54 | this._primArray = []; |
52 | this._materialNodeArray = []; | 55 | this._materialNodeArray = []; |