Patch from colinf to make OK the default response in the ambiguous file dialog (#4458).

git-svn-id: svn://localhost/ardour2/branches/3.0@10484 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-11-07 22:41:15 +00:00
parent b2e6746f10
commit ea93f413f6

View File

@ -43,6 +43,7 @@ AmbiguousFileDialog::AmbiguousFileDialog (const string& file, const vector<strin
get_vbox()->pack_start (*manage (new Label (_("\n\nPlease select the path that you want to get the file from."))));
add_button (_("Done"), RESPONSE_OK);
set_default_response (RESPONSE_OK);
show_all ();
}