summaryrefslogtreecommitdiff
path: root/gtk2_ardour/template_dialog.cc
diff options
context:
space:
mode:
authorJohannes Mueller <github@johannes-mueller.org>2017-08-20 19:10:50 +0200
committerRobin Gareus <robin@gareus.org>2017-08-20 21:09:30 +0200
commit70addf1ed0a5914bef519fc50da7a9429ed18c7e (patch)
tree54c41e12d7ecb8e70d00b4aa2c3cb286ecf8d3a1 /gtk2_ardour/template_dialog.cc
parentc6ecd2a6e16fddc87d244075ed3fb6b964f28041 (diff)
TemplateDialog: Lable the RESPONSE_OK button "Done" rather than "Ok"
Labeling it "Ok" would imply that by clicking it, descriptions would be saved without further interaction. If we did so, we would also need to add a cancel-button or handle simple closing of the dialog window appropriately.
Diffstat (limited to 'gtk2_ardour/template_dialog.cc')
-rw-r--r--gtk2_ardour/template_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/template_dialog.cc b/gtk2_ardour/template_dialog.cc
index 756c4b6a3f..09adc2cb8e 100644
--- a/gtk2_ardour/template_dialog.cc
+++ b/gtk2_ardour/template_dialog.cc
@@ -191,7 +191,7 @@ TemplateDialog::TemplateDialog ()
nb->append_page (*route_tm, _("Track Templates"));
get_vbox()->pack_start (*nb);
- add_button (_("Ok"), Gtk::RESPONSE_OK);
+ add_button (_("Done"), Gtk::RESPONSE_OK);
get_vbox()->show_all();