Skip to content

Commit 72426a3

Browse files
committed
fix: remove fix count appearing in tooltip twice
1 parent 9ebc136 commit 72426a3

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

src/language/CodeInspection.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,6 @@ define(function (require, exports, module) {
395395
tooltip = StringUtils.format(Strings.STATUSBAR_CODE_INSPECTION_TOOLTIP, message);
396396
let iconType = "inspection-errors";
397397
if(documentFixes.size){
398-
tooltip = StringUtils.format(Strings.STATUSBAR_CODE_INSPECTION_TOOLTIP_WITH_FIX,
399-
documentFixes.size, message);
400398
iconType = "inspection-repair";
401399
$fixAllBtn.removeClass("forced-hidden");
402400
}

src/nls/root/strings.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,6 @@ define({
396396
"STATUSBAR_INSOVR_TOOLTIP": "Click to toggle cursor between Insert (INS) and Overwrite (OVR) modes",
397397
"STATUSBAR_LANG_TOOLTIP": "Click to change file type",
398398
"STATUSBAR_CODE_INSPECTION_TOOLTIP": "{0}. Click to toggle report panel.",
399-
"STATUSBAR_CODE_INSPECTION_TOOLTIP_WITH_FIX": "{0} Problem fixable. {1}. Click to toggle report panel.",
400399
"STATUSBAR_DEFAULT_LANG": "(default)",
401400
"STATUSBAR_SET_DEFAULT_LANG": "Set as Default for .{0} Files",
402401
"STATUSBAR_ENCODING_TOOLTIP": "Select the encoding",

0 commit comments

Comments
 (0)