Fix up confusion with relayering after movement drags in
[ardour.git] / gtk2_ardour / editor_regions.cc
index 781af4960f9453b0a02fe575ed1e668a49a54ff6..fa2a06a285694a1dc207b990841d5458e3e88fab 100644 (file)
@@ -77,10 +77,7 @@ EditorRegions::EditorRegions (Editor* e)
        , _sort_type ((Editing::RegionListSortType) 0)
        , expanded (false)
 {
-       static const int column_width = 22;
-
        _display.set_size_request (100, -1);
-       _display.set_name ("RegionListDisplay");
        _display.set_rules_hint (true);
 
        /* Try to prevent single mouse presses from initiating edits.
@@ -111,12 +108,12 @@ EditorRegions::EditorRegions (Editor* e)
 
        ColumnInfo ci[] = {
                { 0, _("Region"), _("Region name, with number of channels in []'s") },
-               { 1, _("Position"),  _("Length of the region") },
-               { 2, _("End"),  _("Length of the region") },
-               { 3, _("End"),  _("Length of the region") },
+               { 1, _("Position"),  _("Position of start of region") },
+               { 2, _("End"),  _("Position of end of region") },
+               { 3, _("Length"),  _("Length of the region") },
                { 4, _("Sync"),  _("Position of region sync point, relative to start of the region") },
-               { 5, _("Sync"),  _("Region fade-in enabled?") },
-               { 6, _("Fade In"),  _("Region fade-out enabled?") },
+               { 5, _("Fade In"),  _("Length of region fade-in (units: secondary clock), () if disabled") },
+               { 6, _("Fade Out"),  _("Length of region fade-out (units: secondary clock), () if dsisabled") },
                { 7, _("L"),  _("Region position locked?") },
                { 8, _("G"),  _("Region position glued to Bars|Beats time?") },
                { 9, _("M"),  _("Region muted?") },
@@ -132,9 +129,7 @@ EditorRegions::EditorRegions (Editor* e)
                l->show ();
 
                if (ci[i].index > 6) {
-                       col->set_fixed_width(column_width);
                        col->set_expand (false);
-                       col->set_sizing (TREE_VIEW_COLUMN_FIXED);
                        col->set_alignment (ALIGN_CENTER);
                } 
        }