mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Sort plugin and themes in setting dialog
This commit is contained in:
parent
f4904e06c8
commit
c4ca06d5e5
2 changed files with 2 additions and 2 deletions
|
|
@ -109,7 +109,7 @@ namespace Wox.Core.Plugin
|
|||
{
|
||||
get
|
||||
{
|
||||
return plugins;
|
||||
return plugins.OrderBy(o => o.Metadata.Name).ToList();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ namespace Wox.Core.Theme
|
|||
.Where(filePath => filePath.EndsWith(".xaml") && !filePath.EndsWith("Base.xaml"))
|
||||
.ToList());
|
||||
}
|
||||
return themes;
|
||||
return themes.OrderBy(o => o).ToList();
|
||||
}
|
||||
|
||||
private string GetThemePath(string themeName)
|
||||
|
|
|
|||
Loading…
Reference in a new issue