Show x-run count in source-list

This commit is contained in:
Robin Gareus 2021-02-14 16:20:36 +01:00
parent f4f9d76e53
commit 887f8a70bc
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 24 additions and 12 deletions

View file

@ -70,6 +70,7 @@ private:
add (color_);
add (region);
add (natural_s);
add (captd_xruns);
}
Gtk::TreeModelColumn<std::string> name;
@ -82,6 +83,7 @@ private:
Gtk::TreeModelColumn<std::string> path;
Gtk::TreeModelColumn<std::string> take_id;
Gtk::TreeModelColumn<samplepos_t> natural_s;
Gtk::TreeModelColumn<size_t> captd_xruns;
};
Columns _columns;