time span column should actually sort by location start time

This commit is contained in:
Nikolaus Gullotta 2019-08-28 14:19:26 -05:00
parent 96f55e8184
commit f127eebff0
2 changed files with 10 additions and 5 deletions

View file

@ -144,8 +144,9 @@ protected:
Gtk::TreeModelColumn<std::string> date;
Gtk::TreeModelColumn<time_t> timestamp;
Gtk::TreeModelColumn<ARDOUR::samplecnt_t> length_actual;
Gtk::TreeModelColumn<ARDOUR::samplecnt_t> start;
RangeCols () { add (location); add(label); add(selected); add(realtime); add(name); add(length); add(date); add(timestamp); add(length_actual);}
RangeCols () { add (location); add(label); add(selected); add(realtime); add(name); add(length); add(date); add(timestamp); add(length_actual); add(start);}
};
RangeCols range_cols;