summaryrefslogtreecommitdiff
path: root/cut-n-paste
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2017-03-11 13:05:46 +0100
committerraveit65 <[email protected]>2017-04-07 13:03:17 +0200
commite77ea1a26c9c7e880b8c4d64a7e0a8f9bd8c4818 (patch)
tree44de117ae522201c865a590db4b51edda275d45b /cut-n-paste
parent64eff64216858ac12ba69ed665165be6ab79b4b4 (diff)
downloadatril-e77ea1a26c9c7e880b8c4d64a7e0a8f9bd8c4818.tar.bz2
atril-e77ea1a26c9c7e880b8c4d64a7e0a8f9bd8c4818.tar.xz
toolbar-editor: don't use deprecated GtkAlignment
Diffstat (limited to 'cut-n-paste')
-rw-r--r--cut-n-paste/toolbar-editor/egg-toolbar-editor.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/cut-n-paste/toolbar-editor/egg-toolbar-editor.c b/cut-n-paste/toolbar-editor/egg-toolbar-editor.c
index 45912b19..580e1c70 100644
--- a/cut-n-paste/toolbar-editor/egg-toolbar-editor.c
+++ b/cut-n-paste/toolbar-editor/egg-toolbar-editor.c
@@ -538,29 +538,24 @@ append_grid (GtkGrid *grid, GList *items, gint y, gint width)
if (items != NULL)
{
gint x = 0;
- GtkWidget *alignment;
GtkWidget *item;
if (y > 0)
{
item = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
- alignment = gtk_alignment_new (0.5, 0.5, 1.0, 0.0);
- g_object_set (G_OBJECT (alignment), "expand", TRUE, NULL);
- gtk_container_add (GTK_CONTAINER (alignment), item);
- gtk_widget_show (alignment);
+ gtk_widget_set_hexpand (item, TRUE);
+ gtk_widget_set_vexpand (item, FALSE);
gtk_widget_show (item);
- gtk_grid_attach (grid, alignment, 0, y, width, 1);
+ gtk_grid_attach (grid, item, 0, y, width, 1);
y++;
}
for (; items != NULL; items = items->next)
{
item = items->data;
- alignment = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
- g_object_set (G_OBJECT (alignment), "expand", TRUE, NULL);
- gtk_container_add (GTK_CONTAINER (alignment), item);
- gtk_widget_show (alignment);
+ gtk_widget_set_hexpand (item, FALSE);
+ gtk_widget_set_vexpand (item, FALSE);
gtk_widget_show (item);
if (x >= width)
@@ -568,7 +563,7 @@ append_grid (GtkGrid *grid, GList *items, gint y, gint width)
x = 0;
y++;
}
- gtk_grid_attach (grid, alignment, x, y, 1, 1);
+ gtk_grid_attach (grid, item, x, y, 1, 1);
x++;
}