summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2011-04-07 10:31:24 -0400
committerCosimo Cecchi <cosimoc@gnome.org>2011-04-25 13:02:01 -0400
commit489958e46ae9b408505bbc617f4a96073c9005c5 (patch)
tree6a61ee1d657ceb9f2bc56d6971bc7a26f5bd7c84
parent5aa31e8f1ec8872fd8e56470ef465633b2f1d9e6 (diff)
downloadnautilus-489958e46ae9b408505bbc617f4a96073c9005c5.tar.gz
conflict-dialog: make the rename entry expand the whole width
-rw-r--r--libnautilus-private/nautilus-file-conflict-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnautilus-private/nautilus-file-conflict-dialog.c b/libnautilus-private/nautilus-file-conflict-dialog.c
index df320d8c5..d7803b602 100644
--- a/libnautilus-private/nautilus-file-conflict-dialog.c
+++ b/libnautilus-private/nautilus-file-conflict-dialog.c
@@ -511,7 +511,7 @@ nautilus_file_conflict_dialog_init (NautilusFileConflictDialog *fcd)
gtk_container_add (GTK_CONTAINER (details->expander), hbox);
widget = gtk_entry_new ();
- gtk_box_pack_start (GTK_BOX (hbox), widget, FALSE, FALSE, 6);
+ gtk_box_pack_start (GTK_BOX (hbox), widget, TRUE, TRUE, 6);
details->entry = widget;
g_signal_connect (widget, "changed",
G_CALLBACK (entry_text_changed_cb), dialog);