Skip to content

Commit

Permalink
Make RGBA color nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
robmeek committed May 18, 2024
1 parent d230cbf commit 27fda6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fonthx/model/font/PathProperties.hx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package fonthx.model.font;
import fonthx.model.color.RGBAColor;
class PathProperties {

public var fill:RGBAColor;
public var stroke:RGBAColor;
public var fill:Null<RGBAColor>;
public var stroke:Null<RGBAColor>;
public var opacity:Float;

public function new() {
Expand Down

0 comments on commit 27fda6f

Please sign in to comment.