evas vg: fix indentation.

This commit is contained in:
Hermet Park 2018-12-18 15:25:24 +09:00
parent 7a5589b14a
commit 83a0e83e3f
1 changed files with 21 additions and 21 deletions

View File

@ -4,34 +4,34 @@ class Efl.Canvas.Vg.Shape (Efl.Canvas.Vg.Node, Efl.Gfx.Shape)
legacy_prefix: evas_vg_shape; legacy_prefix: evas_vg_shape;
methods { methods {
@property fill { @property fill {
[[Fill of the shape object]] [[Fill of the shape object]]
set { set {
} }
get { get {
} }
values { values {
f: Efl.Canvas.Vg.Node; [[Fill object]] f: Efl.Canvas.Vg.Node; [[Fill object]]
} }
} }
@property stroke_fill { @property stroke_fill {
[[Stroke fill of the shape object]] [[Stroke fill of the shape object]]
set { set {
} }
get { get {
} }
values { values {
f: Efl.Canvas.Vg.Node; [[Stroke fill object]] f: Efl.Canvas.Vg.Node; [[Stroke fill object]]
} }
} }
@property stroke_marker { @property stroke_marker {
[[Stroke marker of the shape object]] [[Stroke marker of the shape object]]
set { set {
} }
get { get {
} }
values { values {
m: Efl.Canvas.Vg.Node; [[Stroke marker object]] m: Efl.Canvas.Vg.Node; [[Stroke marker object]]
} }
} }
} }
implements { implements {