summaryrefslogtreecommitdiff
path: root/src/terminal-window.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-01-20 11:23:36 +0300
committermonsta <[email protected]>2016-01-20 12:11:17 +0300
commitbc0ff5afa554f358ec2b395673bd1a915536eeb1 (patch)
treee4fd017b6ed1ecf73049968335eae82345d1fe3c /src/terminal-window.c
parent4ef8ebf3a36535bd46fe40c7c7a1288f45dcae84 (diff)
downloadmate-terminal-bc0ff5afa554f358ec2b395673bd1a915536eeb1.tar.bz2
mate-terminal-bc0ff5afa554f358ec2b395673bd1a915536eeb1.tar.xz
[GTK+3] fix deprecated usage of GtkMisc and don't set padding
default value of "margin" property is zero anyway
Diffstat (limited to 'src/terminal-window.c')
-rw-r--r--src/terminal-window.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/terminal-window.c b/src/terminal-window.c
index 8bcc30a..f380917 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -3915,7 +3915,12 @@ terminal_set_title_callback (GtkAction *action,
gtk_box_pack_start (GTK_BOX (message_area), hbox, FALSE, FALSE, 0);
label = gtk_label_new_with_mnemonic (_("_Title:"));
+#if GTK_CHECK_VERSION (3, 0, 0)
+ gtk_label_set_xalign (GTK_LABEL (label), 0.0);
+ gtk_label_set_yalign (GTK_LABEL (label), 0.5);
+#else
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
+#endif
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
entry = gtk_entry_new ();