summaryrefslogtreecommitdiff
path: root/gtk/gtkplacessidebar.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-02-25 20:57:20 -0500
committerMatthias Clasen <mclasen@redhat.com>2020-02-25 20:59:04 -0500
commitb5bacb3be640a25eb7573090df6d1af6a9adcc7e (patch)
tree4bb50d67d3952387b5a9f99f63db68f5e95f58ba /gtk/gtkplacessidebar.c
parenta9c05193a7b7366989b75471150b1f6d644e2285 (diff)
downloadgtk+-b5bacb3be640a25eb7573090df6d1af6a9adcc7e.tar.gz
Drop the margin property
Replace it with margin-start, -end, -top, -bottom throughout.
Diffstat (limited to 'gtk/gtkplacessidebar.c')
-rw-r--r--gtk/gtkplacessidebar.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c
index 8e0eda0ac6..9a2b59cd9c 100644
--- a/gtk/gtkplacessidebar.c
+++ b/gtk/gtkplacessidebar.c
@@ -2426,7 +2426,10 @@ create_rename_popover (GtkPlacesSidebar *sidebar)
grid = gtk_grid_new ();
gtk_container_add (GTK_CONTAINER (popover), grid);
g_object_set (grid,
- "margin", 10,
+ "margin-start", 10,
+ "margin-end", 10,
+ "margin-top", 10,
+ "margin-bottom", 10,
"row-spacing", 6,
"column-spacing", 6,
NULL);