Amend button caption in 'Remove time' dialogue
authorColin Fletcher <colin.m.fletcher@googlemail.com>
Fri, 19 Jun 2015 11:16:48 +0000 (12:16 +0100)
committerColin Fletcher <colin.m.fletcher@googlemail.com>
Sun, 21 Jun 2015 13:48:33 +0000 (14:48 +0100)
I missed that it still said 'Cut'.

gtk2_ardour/insert_remove_time_dialog.cc

index 888a0bdf20c4a38097c09022598df88f1010dd8d..851f57d1baab79614d84d1463122a7f719c1abae 100644 (file)
@@ -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 ();