Move the cursor to the end only if we highlight the completed match

Signed-off-by: Federico Mena Quintero <federico@gnu.org>

svn path=/trunk/; revision=19801
This commit is contained in:
Federico Mena Quintero 2008-03-13 00:27:16 +00:00 committed by Federico Mena Quintero
parent 46d0480711
commit 45c87ed009

View File

@ -536,6 +536,8 @@ append_common_prefix (GtkFileChooserEntry *chooser_entry,
chooser_entry->file_part_pos + common_prefix_len);
chooser_entry->has_completion = TRUE;
}
else
gtk_editable_set_position (GTK_EDITABLE (chooser_entry), GTK_ENTRY (chooser_entry)->text_length);
}
g_free (common_prefix);
@ -786,8 +788,6 @@ gtk_file_chooser_entry_focus (GtkWidget *widget,
if (!chooser_entry->has_completion)
append_common_prefix (chooser_entry, FALSE);
gtk_editable_set_position (editable, entry->text_length);
/* Trigger the completion window to pop up again by a
* zero-length insertion, a bit of a hack.
*/