feature: add global configuration for custom action (#1077)

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-03-10 21:19:38 +08:00
parent 0f9087fac6
commit 5c279b4b56
No known key found for this signature in database
6 changed files with 182 additions and 6 deletions

View file

@ -471,11 +471,7 @@ namespace SourceGit.Models
public CustomAction AddNewCustomAction()
{
var act = new CustomAction()
{
Name = "Unnamed Custom Action",
};
var act = new CustomAction() { Name = "Unnamed Action" };
CustomActions.Add(act);
return act;
}