From 8bace9b45004f951fa1da9fe9ee3db230fbc7a0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonin=20D=C3=A9cimo?= Date: Wed, 29 Oct 2025 01:13:49 +0100 Subject: [PATCH] Correctly set labelfontcolor --- src/dGraphTreeLayout.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dGraphTreeLayout.ml b/src/dGraphTreeLayout.ml index b8ad38cc..305d9856 100644 --- a/src/dGraphTreeLayout.ml +++ b/src/dGraphTreeLayout.ml @@ -491,7 +491,7 @@ struct eattrs.html_label <- set_if_none eattrs.html_label l; attributes_list_to_eattributes eattrs q | `Labelfontcolor c :: q -> - eattrs.fontcolor <- set_if_none eattrs.fontcolor c; + eattrs.labelfontcolor <- set_if_none eattrs.labelfontcolor c; attributes_list_to_eattributes eattrs q | `Labelfontname n :: q -> eattrs.labelfontname <- set_if_none eattrs.labelfontname n;