From 8ad4f89cf8da5111c7ad3f0e03042ba31a1ee485 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Fri, 19 Jun 2015 12:16:48 +0100 Subject: [PATCH] Amend button caption in 'Remove time' dialogue I missed that it still said 'Cut'. --- gtk2_ardour/insert_remove_time_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/insert_remove_time_dialog.cc b/gtk2_ardour/insert_remove_time_dialog.cc index 888a0bdf20..851f57d1ba 100644 --- a/gtk2_ardour/insert_remove_time_dialog.cc +++ b/gtk2_ardour/insert_remove_time_dialog.cc @@ -96,7 +96,7 @@ InsertRemoveTimeDialog::InsertRemoveTimeDialog (PublicEditor& e, bool remove) get_vbox()->pack_start (*tempo_box); add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); - add_button (remove ? _("Cut time") : _("Insert time"), Gtk::RESPONSE_OK); + add_button (remove ? _("Remove time") : _("Insert time"), Gtk::RESPONSE_OK); show_all (); move_markers_toggled ();