mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 21:52:24 +00:00
Fix quickopen
This commit is contained in:
parent
3149c5b4da
commit
716a83d78f
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ export class QuickOpenWidget extends Disposable implements IModelProvider {
|
|||
.on(DOM.EventType.BLUR, (e: FocusEvent) => this.loosingFocus(e), null, true);
|
||||
|
||||
// Progress Bar
|
||||
this.progressBar = this._register(new ProgressBar(div.clone(), { progressBarBackground: this.styles.progressBarBackground }));
|
||||
this.progressBar = this._register(new ProgressBar(div.getHTMLElement(), { progressBarBackground: this.styles.progressBarBackground }));
|
||||
this.progressBar.hide();
|
||||
|
||||
// Input Field
|
||||
|
|
Loading…
Reference in a new issue