summaryrefslogtreecommitdiff
path: root/panels/region
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2014-09-17 16:22:53 +0200
committerOndrej Holy <oholy@redhat.com>2014-09-19 13:35:15 +0200
commitd82a2101d5ac7bfa3f24b4502a8c5afe73c0e48c (patch)
tree9c5e56eecf581367f28fcd7c56f76812c1e40ae4 /panels/region
parent63a9755cddad4d2a2ebe9e94f67b731776e31957 (diff)
downloadgnome-control-center-d82a2101d5ac7bfa3f24b4502a8c5afe73c0e48c.tar.gz
user-accounts & region: allow multiline notifications
The notification is wider then window for some languages (e.g. France). This patch allows wrapping, limits chars and changes margin as a result of discussion on #gnome-design. https://bugzilla.gnome.org/show_bug.cgi?id=703392
Diffstat (limited to 'panels/region')
-rw-r--r--panels/region/cc-region-panel.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/panels/region/cc-region-panel.c b/panels/region/cc-region-panel.c
index 508120cb3..458fd9a77 100644
--- a/panels/region/cc-region-panel.c
+++ b/panels/region/cc-region-panel.c
@@ -231,13 +231,17 @@ show_restart_notification (CcRegionPanel *self,
priv->notification = gd_notification_new ();
g_object_add_weak_pointer (G_OBJECT (priv->notification),
(gpointer *)&priv->notification);
- box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 24);
- gtk_widget_set_margin_start (box, 12);
- gtk_widget_set_margin_end (box, 12);
+ box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
+ gtk_widget_set_margin_start (box, 6);
+ gtk_widget_set_margin_end (box, 6);
gtk_widget_set_margin_top (box, 6);
gtk_widget_set_margin_bottom (box, 6);
label = gtk_label_new (_("Your session needs to be restarted for changes to take effect"));
+ gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
+ gtk_label_set_max_width_chars (GTK_LABEL (label), 30);
+ g_object_set (G_OBJECT (label), "xalign", 0, NULL);
button = gtk_button_new_with_label (_("Restart Now"));
+ gtk_widget_set_valign (button, GTK_ALIGN_CENTER);
g_signal_connect_swapped (button, "clicked",
G_CALLBACK (restart_now), self);
gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);