summaryrefslogtreecommitdiff
path: root/gtk2_ardour/tempo_dialog.cc
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-04-05 04:15:55 +1000
committernick_m <mainsbridge@gmail.com>2016-05-27 23:38:14 +1000
commit74db6f6ad6e4790d87079377545f9e2692db61d9 (patch)
tree7ecfb5f4f7c4af38489b96538fe8891f32d7f693 /gtk2_ardour/tempo_dialog.cc
parentb4fce626515ed6de504c1fbb7c1c5070e8b2e994 (diff)
Tempo rampos -reorder tempo dialog.
Diffstat (limited to 'gtk2_ardour/tempo_dialog.cc')
-rw-r--r--gtk2_ardour/tempo_dialog.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/gtk2_ardour/tempo_dialog.cc b/gtk2_ardour/tempo_dialog.cc
index 3759d0dfca..5cb897e148 100644
--- a/gtk2_ardour/tempo_dialog.cc
+++ b/gtk2_ardour/tempo_dialog.cc
@@ -198,17 +198,21 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type,
table->attach (*when_label, 0, 1, row, row+1);
++row;
+ ++row;
Label* lock_style_label = manage (new Label(_("Lock Style:"), ALIGN_LEFT, ALIGN_CENTER));
table->attach (*lock_style_label, 0, 1, row, row + 1);
- table->attach (lock_style, 1, 2, row, row + 1);
+ table->attach (lock_style, 1, 5, row, row + 1);
- ++row;
+ --row;
}
+
Label* tempo_type_label = manage (new Label(_("Tempo Type:"), ALIGN_LEFT, ALIGN_CENTER));
table->attach (*tempo_type_label, 0, 1, row, row + 1);
- table->attach (tempo_type, 1, 2, row, row + 2);
+ table->attach (tempo_type, 1, 5, row, row + 1);
+
+ ++row;
get_vbox()->set_border_width (12);
get_vbox()->pack_end (*table);