all repos — tint2 @ 54154e8298b883b2d419952e9b1f564f0013b8bc

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

util: Initialize color in all cases

git-svn-id: http://tint2.googlecode.com/svn/trunk@658 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
o9000 o9000
commit

54154e8298b883b2d419952e9b1f564f0013b8bc

parent

364d0cf7036d7f83cea92c99b983dcbad68c2bc8

1 files changed, 1 insertions(+), 0 deletions(-)

jump to
M src/util/common.csrc/util/common.c

@@ -140,6 +140,7 @@

void get_color (char *hex, double *rgb) { int r, g, b; + r = g = b = 0; hex_to_rgb (hex, &r, &g, &b); rgb[0] = (r / 255.0);