Changed max commits loaded in the log to 1000

This commit is contained in:
Abdelilah El Aissaoui 2021-10-15 03:02:57 +02:00
parent 8b325b117a
commit 0547c2fe9a

View File

@ -38,7 +38,7 @@ class LogManager @Inject constructor(
commitList.addUncommitedChangesGraphCommit(logList.first())
commitList.source(walk)
commitList.fillTo(Int.MAX_VALUE)
commitList.fillTo(1000) // TODO: Limited commits to show to 1000, add a setting to let the user adjust this
}
ensureActive()