We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9c4b92 commit 6997605Copy full SHA for 6997605
src/vs/platform/quickinput/browser/quickInputController.ts
@@ -546,7 +546,9 @@ export class QuickInputController extends Disposable {
546
input.ignoreFocusOut = !!options.ignoreFocusLost;
547
input.matchOnDescription = !!options.matchOnDescription;
548
input.matchOnDetail = !!options.matchOnDetail;
549
- input.sortByLabel = !!options.sortByLabel;
+ if (options.sortByLabel) {
550
+ input.sortByLabel = options.sortByLabel;
551
+ }
552
input.matchOnLabel = (options.matchOnLabel === undefined) || options.matchOnLabel; // default to true
553
input.quickNavigate = options.quickNavigate;
554
input.hideInput = !!options.hideInput;
0 commit comments