summaryrefslogtreecommitdiff
path: root/gtk2_ardour/meter_strip.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-07-24 15:47:53 +0200
committerRobin Gareus <robin@gareus.org>2013-07-24 15:47:53 +0200
commit6f72c8534458dccf1901a95f366280728eee58bd (patch)
treeb5b30c2944fef6740cf877ddbecfadd4781c8df5 /gtk2_ardour/meter_strip.h
parentd8372bdf9b62eec064ec7e94bb6237a5363ee40a (diff)
add separator line to meterbridge
Diffstat (limited to 'gtk2_ardour/meter_strip.h')
-rw-r--r--gtk2_ardour/meter_strip.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/gtk2_ardour/meter_strip.h b/gtk2_ardour/meter_strip.h
index 4b5868e9d2..f1fe69bce2 100644
--- a/gtk2_ardour/meter_strip.h
+++ b/gtk2_ardour/meter_strip.h
@@ -43,7 +43,7 @@ namespace Gtk {
class Style;
}
-class MeterStrip : public Gtk::EventBox, public RouteUI
+class MeterStrip : public Gtk::VBox, public RouteUI
{
public:
MeterStrip (ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
@@ -90,8 +90,12 @@ class MeterStrip : public Gtk::EventBox, public RouteUI
void set_button_names ();
private:
- Gtk::VBox strip;
+ Gtk::VBox mtr_vbox;
+ Gtk::VBox nfo_vbox;
+ Gtk::EventBox mtr_container;
+ Gtk::HSeparator mtr_hsep;
Gtk::HBox meterbox;
+ Gtk::HBox spacer;
Gtk::HBox namebx;
ArdourButton name_label;
Gtk::DrawingArea meter_metric_area;