]> granicus.if.org Git - graphviz/commitdiff
smyrna: remove unused 'FontSize'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 21 Dec 2022 05:44:47 +0000 (21:44 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Dec 2022 19:42:15 +0000 (11:42 -0800)
cmd/smyrna/smyrnadefs.h
cmd/smyrna/viewport.c

index 5f1a3bfd3dd41c22aeb7dd3598cb0813520026c2..a1c012ed6e42074ec8af07c6660c607a2848694d 100644 (file)
@@ -357,10 +357,6 @@ typedef struct
        int bdVisible;          //if borders are visible (boundries of the drawing,
        /*border coordinates, needs to be calculated for each graph */
 
-       /*Font Size */
-       float FontSize;
-
-
        float bdxLeft, bdyTop;
        float bdxRight, bdyBottom;
 
index 8fdfa820bd33aa0da8b0cce8d15662167455e0e4..5321eb5206a33e9297ee73d00aadb80b137ae53a 100644 (file)
@@ -165,8 +165,6 @@ void set_viewport_settings_from_template(ViewInfo *vi, Agraph_t *g) {
     /*default line width */
     vi->LineWidth =
        (float) atof(get_attribute_value("defaultlinewidth", vi, g));
-    vi->FontSize =
-       (float) atof(get_attribute_value("defaultfontsize", vi, g));
 
     vi->mg.width =
        atoi(get_attribute_value("defaultmagnifierwidth", vi, g));
@@ -327,7 +325,6 @@ void init_viewport(ViewInfo * view)
 
 
     view->zoom = -20;
-    view->FontSize = 52;
 
     view->mg.active = 0;
     view->mg.x = 0;