Skip to content

Commit

Permalink
Sampe height as QuickOpen (fixes #85147)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmarti committed Nov 20, 2019
1 parent e055299 commit bd8425f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/parts/quickinput/quickInput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@ export class QuickInputService extends Component implements IQuickInputService {
style.marginLeft = '-' + (width / 2) + 'px';

this.ui.inputBox.layout();
this.ui.list.layout(this.dimension && this.dimension.height * 0.6);
this.ui.list.layout(this.dimension && this.dimension.height * 0.4);
}
}

Expand Down

0 comments on commit bd8425f

Please sign in to comment.