From 7a05ee94b28f0ddcc8d3883739d861eb586890ab Mon Sep 17 00:00:00 2001 From: Matheus Ribeiro Date: Thu, 4 Jul 2024 03:49:28 +0000 Subject: [PATCH] fixing GraphvizColor getters --- QuickGraph.Graphviz/Dot/GraphvizColor.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/QuickGraph.Graphviz/Dot/GraphvizColor.cs b/QuickGraph.Graphviz/Dot/GraphvizColor.cs index 0be222e..223c6ba 100644 --- a/QuickGraph.Graphviz/Dot/GraphvizColor.cs +++ b/QuickGraph.Graphviz/Dot/GraphvizColor.cs @@ -28,9 +28,9 @@ public GraphvizColor( } public byte A { get { return this.a; } } - public byte R { get { return this.a; } } - public byte G { get { return this.a; } } - public byte B { get { return this.a; } } + public byte R { get { return this.r; } } + public byte G { get { return this.g; } } + public byte B { get { return this.b; } } public static GraphvizColor Black {