summaryrefslogtreecommitdiff
path: root/gtk2_ardour/insert_time_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-12-28 21:02:31 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-12-28 21:02:31 +0000
commita85e0b0a2edc2df28a9ece5742a97c9790bf45d1 (patch)
treecbf4b0e5f11c95cf2ee52517540cdb49e04f0fe2 /gtk2_ardour/insert_time_dialog.cc
parentc3a52084f8ca0dc93daaf81efb726d051ed47bf6 (diff)
a huge set of changes to tempo+meter handling. testing feedback requested. the_CLA, you know who i mean :)
git-svn-id: svn://localhost/ardour2/branches/3.0@11103 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/insert_time_dialog.cc')
-rw-r--r--gtk2_ardour/insert_time_dialog.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/gtk2_ardour/insert_time_dialog.cc b/gtk2_ardour/insert_time_dialog.cc
index ae0e9a1f8f..a63d885fdc 100644
--- a/gtk2_ardour/insert_time_dialog.cc
+++ b/gtk2_ardour/insert_time_dialog.cc
@@ -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);