mirror of https://github.com/2dust/v2rayN
添加:MacOS 打开存储所在位置功能 (#6038)
* 添加:MacOS 代理配置与清除 * 修复:点击表头排序时,超时服务器排在前面的问题 * 添加:MacOS 打开存储所在位置功能 * 修复:删除全部节点时,UI不更新的问题pull/6045/head
parent
a6289347cc
commit
61e9101851
|
@ -532,6 +532,10 @@ namespace ServiceLib.ViewModels
|
|||
{
|
||||
Utils.ProcessStart("nautilus", Utils.GetConfigPath());
|
||||
}
|
||||
else if (Utils.IsOSX())
|
||||
{
|
||||
Utils.ProcessStart("open", Utils.GetConfigPath());
|
||||
}
|
||||
}
|
||||
|
||||
#endregion Setting
|
||||
|
|
|
@ -479,7 +479,10 @@ namespace ServiceLib.ViewModels
|
|||
|
||||
await ConfigHandler.RemoveServer(_config, lstSelecteds);
|
||||
NoticeHandler.Instance.Enqueue(ResUI.OperationSuccess);
|
||||
|
||||
if (lstSelecteds.Count == _profileItems.Count)
|
||||
{
|
||||
_profileItems.Clear();
|
||||
}
|
||||
RefreshServers();
|
||||
if (exists)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue