add mixbus profile which removes the tearoffs
[ardour.git] / gtk2_ardour / insert_time_dialog.cc
index 7bfef4b7574fe23b31b3a511c806a610604c9986..a63d885fdc5813599325f728391cc7b5cce2c962 100644 (file)
@@ -31,7 +31,7 @@ using namespace Editing;
 InsertTimeDialog::InsertTimeDialog (PublicEditor& e)
        : ArdourDialog (_("Insert Time"))
        , _editor (e)
-       , _clock ("insertTimeClock", true, X_("InsertTimeClock"), true, false, true, false)
+       , _clock ("insertTimeClock", true, "", true, false, true, false)
 {
        set_session (_editor.session ());
 
@@ -80,8 +80,12 @@ InsertTimeDialog::InsertTimeDialog (PublicEditor& e)
        indent->set_padding (0, 0, 12, 0);
        indent->add (_move_locked_markers);
        get_vbox()->pack_start (*indent);
-       _move_tempos.set_label (_("Move tempo and meter changes"));
-       get_vbox()->pack_start (_move_tempos);
+       tempo_label.set_markup (_("Move tempo and meter changes\n<i>(may cause oddities in the tempo map)</i>"));
+       HBox* tempo_box = manage (new HBox);
+       tempo_box->set_spacing (6);
+       tempo_box->pack_start (_move_tempos, false, false);
+       tempo_box->pack_start (tempo_label, false, false);
+       get_vbox()->pack_start (*tempo_box);
 
        add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
        add_button (_("Insert time"), Gtk::RESPONSE_OK);