summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorNick Mainsbridge <beatroute@iprimus.com.au>2006-05-20 09:10:13 +0000
committerNick Mainsbridge <beatroute@iprimus.com.au>2006-05-20 09:10:13 +0000
commitf88cf52970535c94f641eeeb484827530e75d7f7 (patch)
tree70b10fa3f0a96ac3c3be85e37fcff4103797773c /gtk2_ardour
parent62b491362cc86af4700425011477f9aa8ab2bd11 (diff)
Fix bus rec enable bug introduced in last commit
git-svn-id: svn://localhost/trunk/ardour2@518 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/mixer_strip.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index 73ba274bc2..77f1247b12 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -143,12 +143,12 @@ MixerStrip::MixerStrip (Mixer_UI& mx, Session& sess, Route& rt, bool in_mixer)
button_table.attach (name_button, 0, 2, 0, 1);
button_table.attach (input_button, 0, 2, 1, 2);
- button_table.attach (*rec_enable_button, 0, 2, 2, 3);
bottom_button_table.set_homogeneous (true);
bottom_button_table.set_spacings (0);
bottom_button_table.attach (*solo_button, 0, 1, 1, 2);
bottom_button_table.attach (*mute_button, 1, 2, 1, 2);
+ bottom_button_table.attach (group_button, 0, 2, 0, 1);
if (is_audio_track()) {
@@ -170,7 +170,7 @@ MixerStrip::MixerStrip (Mixer_UI& mx, Session& sess, Route& rt, bool in_mixer)
button_table.attach (speed_frame, 0, 2, 5, 6);
#endif /* VARISPEED_IN_MIXER_STRIP */
- bottom_button_table.attach (group_button, 0, 2, 0, 1);
+ button_table.attach (*rec_enable_button, 0, 2, 2, 3);
}
name_button.add (name_label);