remove 100 change limit
parent
7805023eaa
commit
fe6e62674c
|
@ -1236,7 +1236,7 @@ export class Repository implements Disposable {
|
||||||
|
|
||||||
@throttle
|
@throttle
|
||||||
private async updateModelState(): Promise<void> {
|
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 config = workspace.getConfiguration('git');
|
||||||
const shouldIgnore = config.get<boolean>('ignoreLimitWarning') === true;
|
const shouldIgnore = config.get<boolean>('ignoreLimitWarning') === true;
|
||||||
const useIcons = !config.get<boolean>('decorations.enabled', true);
|
const useIcons = !config.get<boolean>('decorations.enabled', true);
|
||||||
|
|
Loading…
Reference in New Issue