summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Riemann <[email protected]>2013-11-02 00:11:52 +0100
committerraveit65 <[email protected]>2018-07-15 16:10:50 +0200
commit7e9dc52f6a9e85f926d14b3f65afaf89b62c7edf (patch)
tree53fa422da4e83bf3681010a793376aa1a6c0c5f8
parentbaa4e0b1c446c7c5ded232dba1b943004309f349 (diff)
downloadeom-7e9dc52f6a9e85f926d14b3f65afaf89b62c7edf.tar.bz2
eom-7e9dc52f6a9e85f926d14b3f65afaf89b62c7edf.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);