]> Dogcows Code - chaz/openbox/blobdiff - openbox/popup.c
changes to the timer api, pass the timer to the callback function.
[chaz/openbox] / openbox / popup.c
index cc4a605d42e419a320f962b9ff4144c8062e1f34..0a9617098a3ef4add6e6169006d64610f6a442fe 100644 (file)
@@ -109,6 +109,14 @@ void popup_size_to_string(Popup *self, gchar *text)
     self->w = textw + iconw + ob_rr_theme->bevel * (self->hasicon ? 3 : 2);
 }
 
+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->texture[0].data.text.justify = align;
+}
+
 void popup_show(Popup *self, gchar *text, ObClientIcon *icon)
 {
     gint x, y, w, h;
This page took 0.021173 seconds and 4 git commands to generate.