diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2006-08-24 17:57:01 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2006-08-24 17:57:01 +0000 |
| commit | 766e7ae9bfeb1dc0454d7b5b37296b91859831cb (patch) | |
| tree | fca0b58bd1df1c471511b8292e08590f0006653d /render/theme.c | |
| parent | d9f14c1d010860e658f4a9adc6682e0264b410aa (diff) | |
rename osx to mirrorhorizontal and split to splitvertical, this will make all themes that used them not look right so update them
Diffstat (limited to 'render/theme.c')
| -rw-r--r-- | render/theme.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/render/theme.c b/render/theme.c index 31ef3b1a..b1cce15b 100644 --- a/render/theme.c +++ b/render/theme.c @@ -1197,14 +1197,14 @@ static void parse_appearance(gchar *tex, RrSurfaceColorType *grad, *grad = RR_SURFACE_CROSS_DIAGONAL; else if (strstr(tex, "pyramid") != NULL) *grad = RR_SURFACE_PYRAMID; - else if (strstr(tex, "osx") != NULL) - *grad = RR_SURFACE_OSX; + else if (strstr(tex, "mirrorhorizontal") != NULL) + *grad = RR_SURFACE_MIRROR_HORIZONTAL; else if (strstr(tex, "horizontal") != NULL) *grad = RR_SURFACE_HORIZONTAL; else if (strstr(tex, "vertical") != NULL) *grad = RR_SURFACE_VERTICAL; - else if (strstr(tex, "split") != NULL) - *grad = RR_SURFACE_SPLIT; + else if (strstr(tex, "splitvertical") != NULL) + *grad = RR_SURFACE_SPLIT_VERTICAL; else *grad = RR_SURFACE_DIAGONAL; } else { |
