mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-07 07:16:41 +01:00
show generic tooltip on bubble, #37228
This commit is contained in:
@@ -190,9 +190,13 @@
|
||||
"name": "vs/workbench/services/workspace",
|
||||
"project": "vscode-workbench"
|
||||
},
|
||||
{
|
||||
"name": "vs/workbench/services/decorations",
|
||||
"project": "vscode-workbench"
|
||||
},
|
||||
{
|
||||
"name": "setup_messages",
|
||||
"project": "vscode-workbench"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,6 +16,7 @@ import { IThemeService, ITheme } from 'vs/platform/theme/common/themeService';
|
||||
import { IdGenerator } from 'vs/base/common/idGenerator';
|
||||
import { IIterator } from 'vs/base/common/iterator';
|
||||
import { isFalsyOrWhitespace } from 'vs/base/common/strings';
|
||||
import { localize } from 'vs/nls';
|
||||
|
||||
class DecorationRule {
|
||||
|
||||
@@ -127,7 +128,7 @@ class DecorationStyles {
|
||||
if (onlyChildren) {
|
||||
// show items from its children only
|
||||
badgeClassName = rule.bubbleBadgeClassName;
|
||||
tooltip = '';
|
||||
tooltip = localize('bubbleTitle', "contains emphasized items");
|
||||
}
|
||||
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user