mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
remove 100 change limit
This commit is contained in:
parent
7805023eaa
commit
fe6e62674c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue