From 295775a6fd90fb3f22290348f5803b9879c5e8a8 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 11 May 2007 03:48:50 +0000 Subject: [PATCH] change fallbacks --- render/theme.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/render/theme.c b/render/theme.c index 6bde3845..27776123 100644 --- a/render/theme.c +++ b/render/theme.c @@ -482,13 +482,13 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name, RrPixmapMaskCopy(theme->desk_toggled_mask); theme->shade_toggled_hover_mask = RrPixmapMaskCopy(theme->shade_toggled_mask); - /* the toggled pressed mask = the pressed mask (the toggled fallback..) */ + /* the toggled pressed mask = the toggled unpressed mask (i.e. no change)*/ theme->max_toggled_pressed_mask = - RrPixmapMaskCopy(theme->max_pressed_mask); + RrPixmapMaskCopy(theme->max_toggled_mask); theme->desk_toggled_pressed_mask = - RrPixmapMaskCopy(theme->desk_pressed_mask); + RrPixmapMaskCopy(theme->desk_toggled_mask); theme->shade_toggled_pressed_mask = - RrPixmapMaskCopy(theme->shade_pressed_mask); + RrPixmapMaskCopy(theme->shade_toggled_mask); /* read the decoration textures */ if (!read_appearance(db, inst, -- 2.34.1