You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 } }
The text was updated successfully, but these errors were encountered:
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 } }
The text was updated successfully, but these errors were encountered: