From 5ec8ae12967a2728a4bac22b149f2d41d7bb213a Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 18 Jun 2025 14:37:14 +0800 Subject: [PATCH] ux: use `CheckCircled` instead of `Check` icon for stash apply context menu Signed-off-by: leo --- src/ViewModels/StashesPage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewModels/StashesPage.cs b/src/ViewModels/StashesPage.cs index 05218bc5..431f61e6 100644 --- a/src/ViewModels/StashesPage.cs +++ b/src/ViewModels/StashesPage.cs @@ -142,7 +142,7 @@ namespace SourceGit.ViewModels var apply = new MenuItem(); apply.Header = App.Text("StashCM.Apply"); - apply.Icon = App.CreateMenuIcon("Icons.Check"); + apply.Icon = App.CreateMenuIcon("Icons.CheckCircled"); apply.Click += (_, ev) => { if (_repo.CanCreatePopup())