summaryrefslogtreecommitdiff
path: root/render/font.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2004-04-01 21:50:11 +0000
committerMikael Magnusson <mikachu@comhem.se>2004-04-01 21:50:11 +0000
commit4b32a060adb0814a0bd84ff32a364dcf9a1bf6b4 (patch)
tree471f5f270e86b100660a21c30dd461f00ef4371d /render/font.c
parent1c9a69e1df14f9dc571d739b2acfd9c09b5b7fd7 (diff)
no more april's fool (and also committed a bit too much before)
Diffstat (limited to 'render/font.c')
-rw-r--r--render/font.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/render/font.c b/render/font.c
index cc6fe287..ce74cad1 100644
--- a/render/font.c
+++ b/render/font.c
@@ -184,7 +184,7 @@ void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
w = area->width - 4;
h = area->height;
- text = g_string_new(strfry(t->string));
+ text = g_string_new(t->string);
l = g_utf8_strlen(text->str, -1);
font_measure_full(t->font, text->str, &mw, &mh);
while (l && mw > area->width) {
@@ -236,9 +236,9 @@ void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
t->font->xftfont->ascent + y + t->font->offset,
(FcChar8*)text->str, l);
}
- c.color.red = t->color->r | g_random_int_range(0,255) << 8; //t->color->r << 8;
- c.color.green = t->color->g | g_random_int_range(0,255) << 8; //t->color->g << 8;
- c.color.blue = t->color->b | g_random_int_range(0,255) << 8; //t->color->b << 8;
+ c.color.red = t->color->r | t->color->r << 8;
+ c.color.green = t->color->g | t->color->g << 8;
+ c.color.blue = t->color->b | t->color->b << 8;
c.color.alpha = 0xff | 0xff << 8; /* fully opaque text */
c.pixel = t->color->pixel;