mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 18:20:39 +08:00
chore: 启动后对已有配置排序
fix https://github.com/orgs/MaaAssistantArknights/discussions/10633
This commit is contained in:
@@ -483,14 +483,8 @@ namespace MaaWpfGui.Helper
|
||||
return true;
|
||||
}
|
||||
|
||||
public static List<string> GetConfigurationList()
|
||||
{
|
||||
return _kvsMap.Keys.ToList();
|
||||
}
|
||||
public static List<string> GetConfigurationList() => [.. _kvsMap.Keys.OrderBy(key => key)];
|
||||
|
||||
public static string GetCurrentConfiguration()
|
||||
{
|
||||
return _current;
|
||||
}
|
||||
public static string GetCurrentConfiguration() => _current;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user