Skip to content

Commit 1f50215

Browse files
authored
Merge pull request microsoft#166497 from microsoft/tyriar/166496
Fix casing of action widget hover
2 parents a60b513 + a61a96b commit 1f50215

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/actionWidget/browser/actionList.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class ActionItemRenderer<T extends IListMenuItem<IActionItem>> implements IListR
127127
if (element.disabled) {
128128
data.container.title = element.label;
129129
} else if (actionTitle && previewTitle) {
130-
data.container.title = localize({ key: 'label', comment: ['placeholders are keybindings, e.g "F2 to Apply, Shift+F2 to Preview"'] }, "{0} to Apply, {1} to Preview", actionTitle, previewTitle);
130+
data.container.title = localize({ key: 'label', comment: ['placeholders are keybindings, e.g "F2 to apply, Shift+F2 to preview"'] }, "{0} to apply, {1} to preview", actionTitle, previewTitle);
131131
} else {
132132
data.container.title = '';
133133
}

0 commit comments

Comments
 (0)