Skip to content

Commit 58d63fe

Browse files
committed
Add SyntaxConfig.withoutDependencyTooltip
1 parent 9518fe7 commit 58d63fe

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Code/Syntax/SyntaxConfig.elm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ withDependencyTooltip tooltipConfig cfg =
5454
{ cfg | dependencyTooltip = Just tooltipConfig }
5555

5656

57+
withoutDependencyTooltip : SyntaxConfig msg -> SyntaxConfig msg
58+
withoutDependencyTooltip cfg =
59+
{ cfg | dependencyTooltip = Nothing }
60+
61+
5762
withSyntaxHelp : SyntaxConfig msg -> SyntaxConfig msg
5863
withSyntaxHelp cfg =
5964
{ cfg | showSyntaxHelpTooltip = True }

0 commit comments

Comments
 (0)