Quantcast
Channel: quickgraph Work Item Rss Feed
Viewing all articles
Browse latest Browse all 25

Created Unassigned: All properties (A, R, G, B) in GraphvizColor class gets color from a field [25569]

$
0
0
Code from GraphvizColor.cs:
```
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; } }
```
change it to:

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

Viewing all articles
Browse latest Browse all 25

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>