Tempo rampos -reorder tempo dialog.

This commit is contained in:
nick_m 2016-04-05 04:15:55 +10:00
parent b4fce62651
commit 74db6f6ad6

View file

@ -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);