summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnestas Kulik <ernestask@src.gnome.org>2016-10-19 13:31:49 +0300
committerErnestas Kulik <ernestask@src.gnome.org>2016-12-18 17:16:14 +0200
commit9bde4330dfbeeb29c322fec179b3325d2a2b86e2 (patch)
tree176b514c2d7e7591ddd1a07dd74b88319d7a9ca7
parente2f75d068edfa4bec398131c6f141812cac4b3a6 (diff)
downloadnautilus-9bde4330dfbeeb29c322fec179b3325d2a2b86e2.tar.gz
properties-window: do not expand prompt separator
Currently, when packing the separator for the prompt, it is expanded. That means that it can grow vertically as the window grows, creating a visually unappealing effect. https://bugzilla.gnome.org/show_bug.cgi?id=773211
-rw-r--r--src/nautilus-properties-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-properties-window.c b/src/nautilus-properties-window.c
index e2dc19f06..291f26b68 100644
--- a/src/nautilus-properties-window.c
+++ b/src/nautilus-properties-window.c
@@ -338,7 +338,7 @@ add_prompt_and_separator (GtkWidget *vbox,
separator_line = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
gtk_widget_show (separator_line);
- gtk_box_pack_end (GTK_BOX (vbox), separator_line, TRUE, TRUE, 2 * ROW_PAD);
+ gtk_box_pack_end (GTK_BOX (vbox), separator_line, FALSE, TRUE, 2 * ROW_PAD);
}
static void