feat: remove IsMerged check from "Interactive Rebase" context menu conditional (#1033)

This commit is contained in:
Andre Greeff 2025-02-28 11:05:49 +02:00 committed by GitHub
parent 109eee5668
commit f930967698
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -566,7 +566,7 @@ namespace SourceGit.ViewModels
menu.Items.Add(new MenuItem() { Header = "-" });
if (commit.IsMerged && current.Head != commit.SHA)
if (current.Head != commit.SHA)
{
var interactiveRebase = new MenuItem();
interactiveRebase.Header = new Views.NameHighlightedTextBlock("CommitCM.InteractiveRebase", current.Name);