file chooser: Open location entry on '.'

Typing ./ is a fairly common practice to enter a location
relative to the cwd, so make this open the location entry.
This commit is contained in:
Matthias Clasen 2015-06-27 15:06:25 -04:00
parent a3470521ae
commit 5825965027

View File

@ -1217,6 +1217,7 @@ browse_files_key_press_event_cb (GtkWidget *widget,
if ((event->keyval == GDK_KEY_slash
|| event->keyval == GDK_KEY_KP_Divide
|| event->keyval == GDK_KEY_period
#ifdef G_OS_UNIX
|| event->keyval == GDK_KEY_asciitilde
#endif