summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ambiguous_file_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-07 22:41:15 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-07 22:41:15 +0000
commitea93f413f6941aaf104b8201e7e496d63c5ae83f (patch)
treed7b7b38b5c5c728409ce4483ad490d0031d554c1 /gtk2_ardour/ambiguous_file_dialog.cc
parentb2e6746f107694b2ebcd5b037dfa3e410b523a01 (diff)
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
Diffstat (limited to 'gtk2_ardour/ambiguous_file_dialog.cc')
-rw-r--r--gtk2_ardour/ambiguous_file_dialog.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk2_ardour/ambiguous_file_dialog.cc b/gtk2_ardour/ambiguous_file_dialog.cc
index 0eae3617c5..7d57c67660 100644
--- a/gtk2_ardour/ambiguous_file_dialog.cc
+++ b/gtk2_ardour/ambiguous_file_dialog.cc
@@ -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 ();
}