commit f5671429f477ddf9614bfa80c4dd7c6acbdd6111
parent 7fed1428c65716e1aa54f0c9ce7b33b1b1460612
Author: Cassandra <cassandra@techfo.xyz>
Date: Thu, 29 Mar 2018 16:22:20 -0400
Revert "initial text shadowing"
This reverts commit 7fed1428c65716e1aa54f0c9ce7b33b1b1460612.
Diffstat:
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/unlock_indicator.c b/unlock_indicator.c
@@ -298,14 +298,7 @@ static void draw_text(cairo_t *ctx, text_t text) {
x = text.x - ((extents.width / 2) + (extents.x_bearing / 2));
break;
}
-
- // text shadowing - each text object should get its own specifiable shadow color
- // (defaults to #00000000 so that it's invisible)
- // as well as shadow-offset or something
- cairo_set_source_rgba(ctx, 0.0, 0.0, 0.0, text.color.alpha);
- cairo_move_to(ctx, x+1, text.y+1);
- cairo_show_text(ctx, text.str);
-
+
cairo_set_source_rgba(ctx, text.color.red, text.color.green, text.color.blue, text.color.alpha);
cairo_move_to(ctx, x, text.y);
cairo_show_text(ctx, text.str);