Skip to content

Commit 8d19f1c

Browse files
authored
Fix microsoft#178067. Missing tooltip from source actions (microsoft#178171)
1 parent d087cf3 commit 8d19f1c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,8 @@ export class KernelPickerMRUStrategy extends KernelPickerStrategyBase {
664664
const res: SourcePick = {
665665
action: sourceAction,
666666
picked: false,
667-
label: sourceAction.action.label
667+
label: sourceAction.action.label,
668+
tooltip: sourceAction.action.tooltip
668669
};
669670

670671
quickPickItems.push(res);

0 commit comments

Comments
 (0)