mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Tempo rampos -reorder tempo dialog.
This commit is contained in:
parent
b4fce62651
commit
74db6f6ad6
1 changed files with 7 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue