add missing LineBuilder.fixed(bool)

This commit is contained in:
Hannes Janetzek 2014-07-23 14:36:14 +02:00
parent 95c9f47e63
commit 64068730db

View File

@ -208,5 +208,10 @@ public final class LineStyle extends RenderStyle {
this.cap = cap; this.cap = cap;
return this; return this;
} }
public LineBuilder fixed(boolean b) {
this.fixed = b;
return this;
}
} }
} }