vdt
vdt

Reputation: 11

How to disable the extra bold lines under error and warning underlines?

I installed this new theme called Panda Theme. Everything looks good except for the two extra bold lines under the wavy error and warning underline. This happens to all languages.

Does anyone know where to change this back to the default, but still keep the theme?

example image of error underline, and the default that I want it to be example image

Upvotes: 0

Views: 244

Answers (1)

vdt
vdt

Reputation: 11

Ah yes these two lines editorError.border and editorWarning.border was in charge of the extra lines. Putting these into setting.json helped. Thanks @rioV8 for the suggestion.

"workbench.colorCustomizations": {
    "editorError.border": "#00000000",
    "editorWarning.border": "#00000000",
}

Upvotes: 1

Related Questions