Skip to content

Commit

Permalink
improved code format
Browse files Browse the repository at this point in the history
  • Loading branch information
SpoilerRules committed Apr 6, 2024
1 parent c864847 commit 77d6db5
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,11 @@ class TabProxy : AbstractTab(1, "Proxy") {
),
ElementNote.addNote("Settings below will not take effect dynamically.", "13"),
ElementText.addTextValue(
if (BaseConfigurationFactory.getInstance().proxySettings.rawContentSeparator == "\n") "\\n" else BaseConfigurationFactory.getInstance().proxySettings.rawContentSeparator,
if (BaseConfigurationFactory.getInstance().proxySettings.rawContentSeparator == "\n") {
"\\n"
} else {
BaseConfigurationFactory.getInstance().proxySettings.rawContentSeparator
},
"Content Separator",
tooltipText = TooltipKeyAccessor.getValue("raw.content.contentseparator"),
valueUpdater = { newValue ->
Expand Down

0 comments on commit 77d6db5

Please sign in to comment.