remove 100 change limit

pull/65776/head^2
Joao Moreno 2019-01-03 09:20:20 +01:00
parent 7805023eaa
commit fe6e62674c
1 changed files with 1 additions and 1 deletions

View File

@ -1236,7 +1236,7 @@ export class Repository implements Disposable {
@throttle
private async updateModelState(): Promise<void> {
const { status, didHitLimit } = await this.repository.getStatus(100);
const { status, didHitLimit } = await this.repository.getStatus();
const config = workspace.getConfiguration('git');
const shouldIgnore = config.get<boolean>('ignoreLimitWarning') === true;
const useIcons = !config.get<boolean>('decorations.enabled', true);