]> Dogcows Code - chaz/openbox/commitdiff
keep a small space on the sides of windows between the edge and the text
authorDana Jansens <danakj@orodu.net>
Wed, 25 Jun 2003 21:17:15 +0000 (21:17 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 25 Jun 2003 21:17:15 +0000 (21:17 +0000)
render/font.c

index b9a17b48786c744d62e5a7bcec372288e1660bd5..e0a12a1a19bb9a6470fec532160596b558446027 100644 (file)
@@ -125,7 +125,9 @@ void RrFontDraw(XftDraw *d, RrTextureText *t, Rect *area)
     /* center vertically */
     y = area->y +
         (area->height - RrFontHeight(t->font, t->shadow, t->offset)) / 2;
-    w = area->width;
+    /* the +2 and -4 leave a small blank edge on the sides */
+    x += 2;
+    w = area->width - 4;
     h = area->height;
 
     text = g_string_new(t->string);
This page took 0.021598 seconds and 4 git commands to generate.