summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-01 16:37:21 +0000
committerDana Jansens <danakj@orodu.net>2003-09-01 16:37:21 +0000
commit06252b307676bd02f3eb74ea43ebcc4cbaddd3da (patch)
tree6f4838d726336c796c20e5e2d241f75acb4ecac6 /openbox
parentbdfb4e3535393d8597ee013763b53f2fe7e855a3 (diff)
rename back the app_selected appearances to app_hilite
Diffstat (limited to 'openbox')
-rw-r--r--openbox/menuframe.c2
-rw-r--r--openbox/popup.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/openbox/menuframe.c b/openbox/menuframe.c
index 4a56548f..6f91e0b1 100644
--- a/openbox/menuframe.c
+++ b/openbox/menuframe.c
@@ -323,7 +323,7 @@ static void menu_entry_frame_render(ObMenuEntryFrame *self)
self->a_bullet->surface.parent = item_a;
self->a_bullet->surface.parentx =
self->frame->text_x + self->frame->text_w - self->frame->item_h
- - PADDING;
+ + PADDING;
self->a_bullet->surface.parenty = PADDING;
RrPaint(self->a_bullet, self->bullet,
self->frame->item_h - 2*PADDING,
diff --git a/openbox/popup.c b/openbox/popup.c
index ac8ef700..d44a59d1 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_selected_label);
+ self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_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_selected_label);
+ self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_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_selected_bg);
+ self->a_bg = RrAppearanceCopy(ob_rr_theme->app_hilite_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_selected_label);
+ self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_label);
XSetWindowBorderWidth(ob_display, self->bg, ob_rr_theme->bwidth);
XSetWindowBorder(ob_display, self->bg, ob_rr_theme->b_color->pixel);