FubarDevelopment / QuickGraph

Fork of https://quickgraph.codeplex.com/
Microsoft Public License
9 stars 2 forks source link

CP-23557: GraphvizColor properties #139

Open fubar-coder opened 6 years ago

fubar-coder commented 6 years ago

From unknown CodePlex user on Tuesday, 30 October 2012 09:44:43

the GraphvizColor class properties return the worng variable

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 } }

instead of:

public byte A { 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 } }

fubar-coder commented 6 years ago

Form unknown CodePlex user on Tuesday, 04 December 2012 14:15:52

I have uploaded a patch for this.

fubar-coder commented 6 years ago

Form unknown CodePlex user on Thursday, 09 May 2013 11:30:51

Could someone be so kind to provide me with an updated QuickGraph.Graphviz.dll file?

I tried building it myself, to no avail.

Thank you.