mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-05-16 17:22:45 -04:00
text: change default rendering back to Qt
This commit is contained in:
@@ -23,7 +23,8 @@ FocusScope {
|
||||
function updateFilteredPlugins() {
|
||||
var query = searchQuery.toLowerCase();
|
||||
filteredPlugins = PluginService.availablePluginsList.filter(plugin => {
|
||||
if (!query) return true;
|
||||
if (!query)
|
||||
return true;
|
||||
var name = (plugin.name || "").toLowerCase();
|
||||
var desc = (plugin.description || "").toLowerCase();
|
||||
var author = (plugin.author || "").toLowerCase();
|
||||
@@ -31,7 +32,6 @@ FocusScope {
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Connections {
|
||||
target: PluginService
|
||||
function onAvailablePluginsListChanged() {
|
||||
|
||||
Reference in New Issue
Block a user