summaryrefslogtreecommitdiff
path: root/render/theme.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-02 21:22:16 +0000
committerDana Jansens <danakj@orodu.net>2007-06-02 21:22:16 +0000
commita25d0ed10cfc89badd4f3e105610802da2f4cbd4 (patch)
tree0a9e44f53da5d4ce160146a813296765f54326e0 /render/theme.c
parent439d2c62fa83e4a233ea44f3eb5d706c6edfc3df (diff)
consistancy
Diffstat (limited to 'render/theme.c')
-rw-r--r--render/theme.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/render/theme.c b/render/theme.c
index 3e0f9d13..afcb70d2 100644
--- a/render/theme.c
+++ b/render/theme.c
@@ -225,7 +225,8 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
if (!FIND(color, L("window","active","titleseparator"),
&theme->title_separator_focused_color, NULL))
theme->title_separator_focused_color =
- RrColorNew(inst, theme->frame_focused_border_color->r,
+ RrColorNew(inst,
+ theme->frame_focused_border_color->r,
theme->frame_focused_border_color->g,
theme->frame_focused_border_color->b);
/* frame unfocused border color inherits from frame focused border color */
@@ -240,7 +241,8 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
if (!FIND(color, L("window","inactive","titleseparator"),
&theme->title_separator_unfocused_color, NULL))
theme->title_separator_unfocused_color =
- RrColorNew(inst, theme->frame_unfocused_border_color->r,
+ RrColorNew(inst,
+ theme->frame_unfocused_border_color->r,
theme->frame_unfocused_border_color->g,
theme->frame_unfocused_border_color->b);