Skip to content
Snippets Groups Projects
Commit 5758061f authored by Benedikt Meurer's avatar Benedikt Meurer
Browse files

2006-04-20 Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-create-dialog.c(thunar_create_dialog_set_filename):
	  Properly select the whole filename in the create dialog if it
	  doesn't contain a dot. Bug #1679.




(Old svn revision: 21124)
parent ed460c50
No related branches found
No related tags found
No related merge requests found
2006-04-20 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-create-dialog.c(thunar_create_dialog_set_filename):
Properly select the whole filename in the create dialog if it
doesn't contain a dot. Bug #1679.
2006-04-19 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-location-buttons.c: Add "Properties" to the path bar
......
......@@ -408,6 +408,11 @@ thunar_create_dialog_set_filename (ThunarCreateDialog *dialog,
if (G_LIKELY (offset > 0))
gtk_entry_select_region (GTK_ENTRY (dialog->entry), 0, offset);
}
else
{
/* select the whole file name */
gtk_entry_select_region (GTK_ENTRY (dialog->entry), 0, -1);
}
/* notify listeners */
g_object_notify (G_OBJECT (dialog), "filename");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment