Skip to content

Commit

Permalink
Fix #167767. Add kernel picker placeholder (#169687)
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix authored Dec 20, 2022
1 parent c8fca37 commit 5896bb1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,7 @@ export class KernelPickerMRUStrategy extends KernelPickerStrategyBase {
// select from kernel sources
const quickPick = this._quickInputService.createQuickPick<KernelQuickPickItem>();
quickPick.title = kernelListEmpty ? localize('select', "Select Kernel") : localize('selectAnotherKernel', "Select Another Kernel");
quickPick.placeholder = localize('selectKernel.placeholder', "Type to choose a kernel source");
quickPick.busy = true;
quickPick.buttons = [this._quickInputService.backButton];
quickPick.show();
Expand Down

0 comments on commit 5896bb1

Please sign in to comment.