PM-Sel: remove hidden toggle, turn Fav into a checkbox

This commit is contained in:
Robin Gareus 2021-07-16 17:19:21 +02:00
parent 82c536ec81
commit c4f855d13a
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 1 additions and 49 deletions

View file

@ -111,7 +111,6 @@ private:
struct PluginColumns : public Gtk::TreeModel::ColumnRecord {
PluginColumns () {
add (favorite);
add (hidden);
add (name);
add (tags);
add (creator);
@ -121,7 +120,6 @@ private:
add (plugin);
}
Gtk::TreeModelColumn<bool> favorite;
Gtk::TreeModelColumn<bool> hidden;
Gtk::TreeModelColumn<std::string> name;
Gtk::TreeModelColumn<std::string> type_name;
Gtk::TreeModelColumn<std::string> creator;
@ -173,7 +171,6 @@ private:
bool show_this_plugin (const ARDOUR::PluginInfoPtr&, const std::string&);
void favorite_changed (const std::string& path);
void hidden_changed (const std::string& path);
bool in_row_change;
void plugin_chosen_from_menu (const ARDOUR::PluginInfoPtr&);