Skip to content

Commit

Permalink
fix: trim whitespace in code lines [IDE-242] (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiandoetsch authored Apr 10, 2024
1 parent 5b4745f commit 0f33277
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class SuggestionDescriptionPanelFromLS(
}
stepPanel.add(positionLabel, baseGridConstraintsAnchorWest(0, indent = 1))

val codeLine = codeLine(flow.content)
val codeLine = codeLine(flow.content.trimStart())
codeLine.isOpaque = false
stepPanel.add(
codeLine,
Expand Down

0 comments on commit 0f33277

Please sign in to comment.