diff options
author | Nikias Bassen | 2010-07-14 01:48:46 +0200 |
---|---|---|
committer | Nikias Bassen | 2010-07-14 01:48:46 +0200 |
commit | 63e4982a338315415b9632123479c0824e0b0545 (patch) | |
tree | f63ea6ad024722c7d861c455269baa32eea12f30 /src | |
parent | 7fc3c585a56af8ea8bb06133646b7f10ad3eb1e0 (diff) | |
download | sbmanager-63e4982a338315415b9632123479c0824e0b0545.tar.gz sbmanager-63e4982a338315415b9632123479c0824e0b0545.tar.bz2 |
Adjust label transparency if a wallpaper is used
Diffstat (limited to 'src')
-rw-r--r-- | src/gui.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -143,6 +143,7 @@ static void pages_free() if (wallpaper) { clutter_actor_destroy(wallpaper); wallpaper = NULL; + item_text_color.alpha = 210; } } @@ -1260,6 +1261,7 @@ static void gui_set_wallpaper(const char *wp) clutter_group_add(CLUTTER_GROUP(stage), actor); clutter_actor_lower_bottom(actor); wallpaper = actor; + item_text_color.alpha = 255; } #endif |