summaryrefslogtreecommitdiff
path: root/openbox/popup.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-01 07:12:58 +0000
committerDana Jansens <danakj@orodu.net>2003-09-01 07:12:58 +0000
commitea94909334695004bee5fbc4bfc9fdff90c6b079 (patch)
tree98fd1989e7e9be7da72f2ffd3320d6f2700788df /openbox/popup.c
parent7f7378cc2b0712de050a93bdfa116788de06a23a (diff)
couple more xrdb theme format cleanups:
window.focus.font -> window.label.focus.font window.unfocus.font -> window.label.unfocus.font window.justify -> window.label.justify menu.frame.* -> menu.items.* menu.hilite.* -> menu.selected.* *.picColor -> *.imageColor
Diffstat (limited to 'openbox/popup.c')
-rw-r--r--openbox/popup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/popup.c b/openbox/popup.c
index d44a59d1..ac8ef700 100644
--- a/openbox/popup.c
+++ b/openbox/popup.c
@@ -97,7 +97,7 @@ void popup_size_to_string(Popup *self, gchar *text)
gint iconw;
if (!self->a_text)
- self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_label);
+ self->a_text = RrAppearanceCopy(ob_rr_theme->app_selected_label);
self->a_text->texture[0].data.text.string = text;
RrMinsize(self->a_text, &textw, &texth);
@@ -112,7 +112,7 @@ void popup_size_to_string(Popup *self, gchar *text)
void popup_set_text_align(Popup *self, RrJustify align)
{
if (!self->a_text)
- self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_label);
+ self->a_text = RrAppearanceCopy(ob_rr_theme->app_selected_label);
self->a_text->texture[0].data.text.justify = align;
}
@@ -125,11 +125,11 @@ void popup_show(Popup *self, gchar *text, ObClientIcon *icon)
/* create the shit if needed */
if (!self->a_bg)
- self->a_bg = RrAppearanceCopy(ob_rr_theme->app_hilite_bg);
+ self->a_bg = RrAppearanceCopy(ob_rr_theme->app_selected_bg);
if (self->hasicon && !self->a_icon)
self->a_icon = RrAppearanceCopy(ob_rr_theme->a_clear_tex);
if (!self->a_text)
- self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_label);
+ self->a_text = RrAppearanceCopy(ob_rr_theme->app_selected_label);
XSetWindowBorderWidth(ob_display, self->bg, ob_rr_theme->bwidth);
XSetWindowBorder(ob_display, self->bg, ob_rr_theme->b_color->pixel);