summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_region_editor.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-10-27 21:18:44 +0000
committerCarl Hetherington <carl@carlh.net>2010-10-27 21:18:44 +0000
commitd31a63c68592d8a54d9a728c787c17885677151f (patch)
tree549450b98a22ce0c24c2a34db387e19c43d5797a /gtk2_ardour/audio_region_editor.cc
parentba6d6895f7802e537fd198c17ff3b088086e76f0 (diff)
Show a region's sources in its properties dialogue.
git-svn-id: svn://localhost/ardour2/branches/3.0@7927 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/audio_region_editor.cc')
-rw-r--r--gtk2_ardour/audio_region_editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/audio_region_editor.cc b/gtk2_ardour/audio_region_editor.cc
index bade9b27d9..1823ab1303 100644
--- a/gtk2_ardour/audio_region_editor.cc
+++ b/gtk2_ardour/audio_region_editor.cc
@@ -57,8 +57,8 @@ AudioRegionEditor::AudioRegionEditor (Session* s, boost::shared_ptr<AudioRegion>
gain_label.set_name ("AudioRegionEditorLabel");
gain_label.set_text (_("Region gain:"));
gain_entry.configure (gain_adjustment, 0.0, 1);
- _table.attach (gain_label, 0, 1, 7, 8, Gtk::FILL, Gtk::FILL);
- _table.attach (*gb, 1, 2, 7, 8, Gtk::FILL, Gtk::FILL);
+ _table.attach (gain_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
+ _table.attach (*gb, 1, 2, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
gain_changed ();