From 13215d5c33b5cd09a9246e9428c220e7ae89e769 Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 1 Jul 2025 20:19:32 +0800 Subject: [PATCH] fix: double-click change in `INFORMATION` tab does not switch to `CHANGES` tab Signed-off-by: leo --- src/ViewModels/CommitDetail.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ViewModels/CommitDetail.cs b/src/ViewModels/CommitDetail.cs index 6df91b06..df687cfd 100644 --- a/src/ViewModels/CommitDetail.cs +++ b/src/ViewModels/CommitDetail.cs @@ -24,6 +24,8 @@ namespace SourceGit.ViewModels _repo.CommitDetailActivePageIndex = value; else _activePageIndex = value; + + OnPropertyChanged(); } }