- Failed assertion in `chkSgraph` for dot layout and ortho splines. #1408
- Failed assertion in `chkSgraph` for circo layout and ortho splines. #1990
- Segmentation Fault with splines="ortho". #1658
+- Transparent Label appear in SVG output #146
## [4.0.0] – 2022-05-29
gvprintf(job, " fill=\"#%02x%02x%02x\"",
obj->pencolor.u.rgba[0], obj->pencolor.u.rgba[1],
obj->pencolor.u.rgba[2]);
- if (obj->pencolor.u.rgba[3] > 0 && obj->pencolor.u.rgba[3] < 255)
+ if (obj->pencolor.u.rgba[3] < 255)
gvprintf(job, " fill-opacity=\"%f\"", ((float) obj->pencolor.u.rgba[3] / 255.0));
break;
default:
# this should be consistent with the direction the edge is drawn
assert routed_up == head_is_top, "heap/tail confusion"
-@pytest.mark.xfail(strict=True)
def test_146():
"""
dot should respect an alpha channel value of 0 when writing SVG