consistent ordering of Ruler Actions.

This commit is contained in:
Robin Gareus 2015-03-21 19:40:13 +01:00
parent 9cdb0e2765
commit 3812925a62
2 changed files with 7 additions and 5 deletions

View File

@ -422,11 +422,13 @@
<menu action="RulerMenu">
<menuitem action="toggle-minsec-ruler"/>
<menuitem action="toggle-timecode-ruler"/>
<menuitem action="toggle-samples-ruler"/>
<menuitem action="toggle-bbt-ruler"/>
<separator/>
<menuitem action="toggle-meter-ruler"/>
<menuitem action="toggle-tempo-ruler"/>
<menuitem action="toggle-range-ruler"/>
<menuitem action="toggle-loop-punch-ruler"/>
<menuitem action="toggle-cd-marker-ruler"/>
<menuitem action="toggle-marker-ruler"/>

View File

@ -29,16 +29,16 @@ RulerDialog::RulerDialog ()
{
add_button (Gtk::Stock::OK, Gtk::RESPONSE_ACCEPT);
get_vbox()->pack_start (samples_button);
get_vbox()->pack_start (timecode_button);
get_vbox()->pack_start (minsec_button);
get_vbox()->pack_start (timecode_button);
get_vbox()->pack_start (samples_button);
get_vbox()->pack_start (bbt_button);
get_vbox()->pack_start (tempo_button);
get_vbox()->pack_start (meter_button);
get_vbox()->pack_start (loop_punch_button);
get_vbox()->pack_start (tempo_button);
get_vbox()->pack_start (range_button);
get_vbox()->pack_start (mark_button);
get_vbox()->pack_start (loop_punch_button);
get_vbox()->pack_start (cdmark_button);
get_vbox()->pack_start (mark_button);
get_vbox()->pack_start (video_button);
get_vbox()->show_all ();