From a8426fc085e295c3e086598ba04dfbdaec86d8ea Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 20 Jul 2020 13:29:47 +0800 Subject: [PATCH] Change max commits to show in Histories view to 8000 --- SourceGit/UI/Dashboard.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SourceGit/UI/Dashboard.xaml.cs b/SourceGit/UI/Dashboard.xaml.cs index 6b0950c2..abb5d5eb 100644 --- a/SourceGit/UI/Dashboard.xaml.cs +++ b/SourceGit/UI/Dashboard.xaml.cs @@ -84,7 +84,7 @@ namespace SourceGit.UI { }); Task.Run(() => { - var args = "-5000 "; + var args = "-8000 "; if (repo.LogFilters.Count > 0) { args = args + string.Join(" ", repo.LogFilters); } else {