Change plugin search to include the plugin description

This commit is contained in:
GravitySalad
2018-10-05 01:54:00 -07:00
parent a0dcc77668
commit b9bdeb487c

View File

@@ -135,6 +135,7 @@ class PluginListItem extends JPanel
this.name = name;
this.description = description;
Collections.addAll(keywords, name.toLowerCase().split(" "));
Collections.addAll(keywords, description.toLowerCase().split(" "));
Collections.addAll(keywords, tags);
setLayout(new BorderLayout(3, 0));