summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2015-06-19 12:16:48 +0100
committerColin Fletcher <colin.m.fletcher@googlemail.com>2015-06-21 14:48:33 +0100
commit8ad4f89cf8da5111c7ad3f0e03042ba31a1ee485 (patch)
tree28d5b3b5cd1b39a9b3b3a3897ba0f18e46370b9c
parentb66cc472e85f9816e8640a3828221fc7f213b2ce (diff)
Amend button caption in 'Remove time' dialogue
I missed that it still said 'Cut'.
-rw-r--r--gtk2_ardour/insert_remove_time_dialog.cc2
1 files changed, 1 insertions, 1 deletions
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 ();