Skip to content

Commit 2ad5248

Browse files
SeeSharpSoftSommer
authored andcommitted
[FIX] Disabled info balloon no longer popping up for separators
Fixes #64
1 parent 55563c4 commit 2ad5248

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/seesharpsoft/intellij/plugins/csv/editor/CsvAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ protected boolean handleSeparatorElement(@NotNull PsiElement element, @NotNull A
108108
}
109109
}
110110
if (textAttributes != null) {
111-
Annotation annotation = holder.createAnnotation(CSV_COLUMN_INFO_SEVERITY, element.getTextRange(), "<TAB>");
111+
Annotation annotation = holder.createAnnotation(CSV_COLUMN_INFO_SEVERITY, element.getTextRange(), showInfoBalloon(holder.getCurrentAnnotationSession()) ? "↹" : null);
112112
annotation.setEnforcedTextAttributes(textAttributes);
113113
annotation.setNeedsUpdateOnTyping(false);
114114
}

0 commit comments

Comments
 (0)