(create_widgets): Fix width of index glyphs..
authorhanda <handa>
Thu, 29 Jul 2004 12:59:04 +0000 (12:59 +0000)
committerhanda <handa>
Thu, 29 Jul 2004 12:59:04 +0000 (12:59 +0000)
example/otfview.c

index 0b36be3..662d0b8 100644 (file)
@@ -1018,7 +1018,8 @@ create_widgets ()
        }
       w = head;
     }
-  XtSetArg(arg[4], XtNwidth, glyph_width + 2);
+  /* 10 = (1 (border_width) + 4 (inner_width)) * 2 */
+  XtSetArg(arg[4], XtNwidth, glyph_width + 10);
   XtSetArg (arg[5], XtNfromVert, glyph[112]);
   XtSetArg (arg[6], XtNfromHoriz, w);
   XtSetArg (arg[7], XtNborderWidth, 0);