[Xfce4-commits] [apps/xfce4-notifyd] 28/29: Set notification text to left-aligned
noreply at xfce.org
noreply at xfce.org
Wed Jun 29 23:20:18 CEST 2016
This is an automated email from the git hooks/post-receive script.
ochosi pushed a commit to branch master
in repository apps/xfce4-notifyd.
commit cc903a89ef0364112c74d17c748b790365793871
Author: Simon Steinbeiss <simon.steinbeiss at elfenbeinturm.at>
Date: Wed Jun 29 22:44:04 2016 +0200
Set notification text to left-aligned
---
xfce4-notifyd/xfce-notify-window.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/xfce4-notifyd/xfce-notify-window.c b/xfce4-notifyd/xfce-notify-window.c
index 1139386..4c5df56 100644
--- a/xfce4-notifyd/xfce-notify-window.c
+++ b/xfce4-notifyd/xfce-notify-window.c
@@ -229,11 +229,13 @@ xfce_notify_window_init(XfceNotifyWindow *window)
window->summary = gtk_label_new(NULL);
gtk_widget_set_name (window->summary, "summary");
gtk_label_set_line_wrap(GTK_LABEL(window->summary), TRUE);
+ gtk_label_set_xalign (GTK_LABEL(window->summary), 0);
gtk_box_pack_start(GTK_BOX(vbox), window->summary, FALSE, FALSE, 0);
window->body = gtk_label_new(NULL);
gtk_widget_set_name (window->body, "body");
gtk_label_set_line_wrap(GTK_LABEL(window->body), TRUE);
+ gtk_label_set_xalign (GTK_LABEL(window->body), 0);
gtk_box_pack_start(GTK_BOX(vbox), window->body, TRUE, TRUE, 0);
window->button_box = gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list