summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2014-10-04 15:32:09 +0300
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2014-10-04 15:57:25 +0300
commite6509643d3fe2024108a32b817d35d4c9ec3997e (patch)
treeef3b9dfc51855150410393311a48dc7fe62492ee
parent1d30abd98ef8d52d6594dc9217618231d00e20e9 (diff)
downloadmetacity-e6509643d3fe2024108a32b817d35d4c9ec3997e.tar.gz
tabpopup.c: don't use deprecated GtkMisc
-rw-r--r--src/ui/tabpopup.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ui/tabpopup.c b/src/ui/tabpopup.c
index 34a5243d..94a5238d 100644
--- a/src/ui/tabpopup.c
+++ b/src/ui/tabpopup.c
@@ -296,9 +296,7 @@ meta_ui_tab_popup_new (const MetaTabEntry *entries,
obj = gtk_widget_get_accessible (popup->label);
atk_object_set_role (obj, ATK_ROLE_STATUSBAR);
- gtk_misc_set_padding (GTK_MISC (popup->label), 3, 3);
-
- gtk_box_pack_end (GTK_BOX (vbox), popup->label, FALSE, FALSE, 0);
+ gtk_box_pack_end (GTK_BOX (vbox), popup->label, FALSE, FALSE, 3);
max_label_width = 0;
top = 0;