diff options
author | raveit65 <[email protected]> | 2017-08-25 19:54:31 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-08-25 21:05:17 +0200 |
commit | 9f70b4ff8f9bff8671c886294f1b3403ce4c1067 (patch) | |
tree | edddb9f2b508f794450c9c48efe1df168b5c2b57 /shell | |
parent | c5f80e704c8391696c2d006a7f41ed7ca9de2027 (diff) | |
download | atril-9f70b4ff8f9bff8671c886294f1b3403ce4c1067.tar.bz2 atril-9f70b4ff8f9bff8671c886294f1b3403ce4c1067.tar.xz |
ev-properties-licence: don't use deprecated GtkAlignment
- drop gtk_alignment_new
- drop gtk_alignment_set_padding
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ev-properties-license.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/shell/ev-properties-license.c b/shell/ev-properties-license.c index de7aaa77..f9f11b04 100644 --- a/shell/ev-properties-license.c +++ b/shell/ev-properties-license.c @@ -58,6 +58,8 @@ get_license_text_widget (EvDocumentLicense *license) gtk_text_buffer_set_text (buffer, ev_document_license_get_text (license), -1); swindow = gtk_scrolled_window_new (NULL, NULL); + gtk_widget_set_hexpand (swindow, TRUE); + gtk_widget_set_margin_start (swindow, 12); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swindow), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); @@ -77,6 +79,7 @@ get_license_uri_widget (const gchar *uri) gchar *markup; label = gtk_label_new (NULL); + gtk_widget_set_margin_start (label, 12); g_object_set (G_OBJECT (label), "xalign", 0.0, "width_chars", 25, @@ -103,7 +106,6 @@ ev_properties_license_add_section (EvPropertiesLicense *properties, GtkWidget *contents) { GtkWidget *title; - GtkWidget *alignment; gchar *markup; title = gtk_label_new (NULL); @@ -119,13 +121,8 @@ ev_properties_license_add_section (EvPropertiesLicense *properties, gtk_box_pack_start (GTK_BOX (properties), title, FALSE, FALSE, 0); gtk_widget_show (title); - alignment = gtk_alignment_new (0.5, 0.5, 1., 1.); - gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 0, 0, 12, 0); - gtk_container_add (GTK_CONTAINER (alignment), contents); + gtk_box_pack_start (GTK_BOX (properties), contents, FALSE, TRUE, 0); gtk_widget_show (contents); - - gtk_box_pack_start (GTK_BOX (properties), alignment, FALSE, TRUE, 0); - gtk_widget_show (alignment); } void |