summaryrefslogtreecommitdiff
path: root/capplets/about-me/e-image-chooser.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-01-20 15:11:43 +0300
committermonsta <[email protected]>2016-01-20 15:11:43 +0300
commit6b337edf80447dacfc7e05bb120c9eff30d05e3a (patch)
tree91d83c349d52b1f87c15a41f018a29bb91fb1317 /capplets/about-me/e-image-chooser.c
parentf0450bb4001a9d37025578b7933b552cb07b27f6 (diff)
downloadmate-control-center-6b337edf80447dacfc7e05bb120c9eff30d05e3a.tar.bz2
mate-control-center-6b337edf80447dacfc7e05bb120c9eff30d05e3a.tar.xz
about-me: use GtkBox instead of GtkVBox in both GTK+ builds
Diffstat (limited to 'capplets/about-me/e-image-chooser.c')
-rw-r--r--capplets/about-me/e-image-chooser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capplets/about-me/e-image-chooser.c b/capplets/about-me/e-image-chooser.c
index 3c1e7f71..56874b53 100644
--- a/capplets/about-me/e-image-chooser.c
+++ b/capplets/about-me/e-image-chooser.c
@@ -67,7 +67,7 @@ static void image_drag_data_received_cb (GtkWidget *widget,
guint info, guint time, EImageChooser *chooser);
static GObjectClass *parent_class = NULL;
-#define PARENT_TYPE GTK_TYPE_VBOX
+#define PARENT_TYPE GTK_TYPE_BOX
enum DndTargetType {
DND_TARGET_TYPE_URI_LIST
@@ -82,7 +82,7 @@ static const int num_image_drag_types = sizeof (image_drag_types) / sizeof (imag
GtkWidget *
e_image_chooser_new (void)
{
- return g_object_new (E_TYPE_IMAGE_CHOOSER, NULL);
+ return g_object_new (E_TYPE_IMAGE_CHOOSER, "orientation", GTK_ORIENTATION_VERTICAL, NULL);
}
GType