Skip to content

Commit b10e084

Browse files
committed
ux: context menu separator
1 parent 88e64a4 commit b10e084

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ViewModels/Repository.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.Collections.Generic;
33
using System.IO;
4-
using System.Runtime.Intrinsics.Arm;
54
using System.Text;
65
using System.Text.Json;
76
using System.Threading;
@@ -1820,7 +1819,6 @@ public ContextMenu CreateContextMenuForRemoteBranch(Models.Branch branch)
18201819
DataContext = new BranchCompare(_fullpath, branch, _currentBranch)
18211820
});
18221821
};
1823-
menu.Items.Add(new MenuItem() { Header = "-" });
18241822
menu.Items.Add(compareWithHead);
18251823

18261824
if (_localChangesCount > 0)
@@ -1841,6 +1839,7 @@ public ContextMenu CreateContextMenuForRemoteBranch(Models.Branch branch)
18411839
};
18421840
menu.Items.Add(compareWithWorktree);
18431841
}
1842+
menu.Items.Add(new MenuItem() { Header = "-" });
18441843

18451844
var delete = new MenuItem();
18461845
delete.Header = new Views.NameHighlightedTextBlock("BranchCM.Delete", name);

0 commit comments

Comments
 (0)