Expand just entry fields when the dialog is expanded
[ardour.git] / gtk2_ardour / editor_route_groups.h
index f92e79c7cc3942eee5f5ad94005e0a01ce280a7e..94ab3658f3e08a2e8d97dd16d82991a3eb3fad30 100644 (file)
@@ -39,7 +39,9 @@ private:
         struct Columns : public Gtk::TreeModel::ColumnRecord {
 
                 Columns () {
+                       add (gdkcolor);
                        add (text);
+                       add (is_visible);
                        add (gain);
                        add (gain_relative);
                        add (mute);
@@ -48,13 +50,14 @@ private:
                        add (monitoring);
                        add (select);
                        add (edits);
+                       add (active_shared);
                        add (active_state);
-                       add (is_visible);
-                       add (gdkcolor);
                        add (routegroup);
                 }
 
+               Gtk::TreeModelColumn<Gdk::Color> gdkcolor;
                Gtk::TreeModelColumn<std::string> text;
+               Gtk::TreeModelColumn<bool> is_visible;
                Gtk::TreeModelColumn<bool> gain;
                Gtk::TreeModelColumn<bool> gain_relative;
                Gtk::TreeModelColumn<bool> mute;
@@ -63,9 +66,8 @@ private:
                Gtk::TreeModelColumn<bool> monitoring;
                Gtk::TreeModelColumn<bool> select;
                Gtk::TreeModelColumn<bool> edits;
+               Gtk::TreeModelColumn<bool> active_shared;
                Gtk::TreeModelColumn<bool> active_state;
-               Gtk::TreeModelColumn<bool> is_visible;
-               Gtk::TreeModelColumn<Gdk::Color> gdkcolor;
                Gtk::TreeModelColumn<ARDOUR::RouteGroup*> routegroup;
        };