Tempo rampos -reorder tempo dialog.
authornick_m <mainsbridge@gmail.com>
Mon, 4 Apr 2016 18:15:55 +0000 (04:15 +1000)
committernick_m <mainsbridge@gmail.com>
Fri, 27 May 2016 13:38:14 +0000 (23:38 +1000)
gtk2_ardour/tempo_dialog.cc

index 3759d0dfca14370545087f78ec3412d4ecee66bb..5cb897e1488c60f631612e2551e4d84ba96abd4e 100644 (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);