summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Riemann <[email protected]>2013-11-02 00:11:52 +0100
committerraveit65 <[email protected]>2018-07-03 10:39:59 +0200
commitcfc83b480d4a4577f8b6fcec818a4d63f6b2bb7e (patch)
treeb80550c2535dbf43e149b4c93942a03453715e3c
parented3ef44856215622d9feab525ce0302b410cdd61 (diff)
downloadeom-cfc83b480d4a4577f8b6fcec818a4d63f6b2bb7e.tar.bz2
eom-cfc83b480d4a4577f8b6fcec818a4d63f6b2bb7e.tar.xz
EomPropertiesDialog: Make details view expand vertically
Otherwise it would only be large enough for roughly one line. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/c4a025e
-rw-r--r--src/eom-properties-dialog.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eom-properties-dialog.c b/src/eom-properties-dialog.c
index 1c6b958..6ef84f9 100644
--- a/src/eom-properties-dialog.c
+++ b/src/eom-properties-dialog.c
@@ -748,6 +748,7 @@ eom_properties_dialog_init (EomPropertiesDialog *prop_dlg)
priv->exif_details = eom_exif_details_new ();
gtk_widget_set_size_request (priv->exif_details, -1, 170);
gtk_container_set_border_width (GTK_CONTAINER (sw), 6);
+ gtk_widget_set_vexpand (priv->exif_details, TRUE);
gtk_container_add (GTK_CONTAINER (sw), priv->exif_details);
gtk_widget_show_all (sw);