From: nick_m Date: Mon, 4 Apr 2016 18:15:55 +0000 (+1000) Subject: Tempo rampos -reorder tempo dialog. X-Git-Tag: 5.0-pre0~418 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=74db6f6ad6e4790d87079377545f9e2692db61d9;p=ardour.git Tempo rampos -reorder tempo dialog. --- 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 @@ -197,18 +197,22 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type, Label* when_label = manage (new Label(_("Tempo begins at"), ALIGN_LEFT, ALIGN_CENTER)); 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);