summaryrefslogtreecommitdiff
path: root/openbox/popup.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2009-12-21 10:35:06 -0500
committerDana Jansens <danakj@orodu.net>2009-12-21 10:35:06 -0500
commitcfdbe23e0d9b72b4c220a10ddf60a4e981967b63 (patch)
treea048dc335adbf3b05a56fdce603add94d94612a5 /openbox/popup.c
parentad812e6299223efb0cb4faee03ce99870e5c7ce5 (diff)
Add themeing options for inactive osd labels, osd.inactive.label.*
(rename the current osd label options from osd.label to osd.active.label, similar to the window.(in)?active.label options.
Diffstat (limited to 'openbox/popup.c')
-rw-r--r--openbox/popup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/popup.c b/openbox/popup.c
index 47d0d0fb..a4192819 100644
--- a/openbox/popup.c
+++ b/openbox/popup.c
@@ -36,7 +36,7 @@ ObPopup *popup_new(void)
self->obwin.type = OB_WINDOW_CLASS_INTERNAL;
self->gravity = NorthWestGravity;
self->x = self->y = self->textw = self->h = 0;
- self->a_bg = RrAppearanceCopy(ob_rr_theme->osd_hilite_bg);
+ self->a_bg = RrAppearanceCopy(ob_rr_theme->osd_bg);
self->a_text = RrAppearanceCopy(ob_rr_theme->osd_hilite_label);
self->iconwm = self->iconhm = 1;
@@ -506,8 +506,8 @@ ObPagerPopup *pager_popup_new(void)
self->desks = 0;
self->wins = g_new(Window, self->desks);
- self->hilight = RrAppearanceCopy(ob_rr_theme->osd_hilite_fg);
- self->unhilight = RrAppearanceCopy(ob_rr_theme->osd_unhilite_fg);
+ self->hilight = RrAppearanceCopy(ob_rr_theme->osd_hilite_bg);
+ self->unhilight = RrAppearanceCopy(ob_rr_theme->osd_unhilite_bg);
self->popup->hasicon = TRUE;
self->popup->draw_icon = pager_popup_draw_icon;