We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 052586f commit 01a1de1Copy full SHA for 01a1de1
src/main/java/com/flowingcode/vaadin/addons/syntaxhighlighter/BaseSyntaxHighlighter.java
@@ -15,15 +15,15 @@ public class BaseSyntaxHighlighter extends ReactAdapterComponent implements HasS
15
* @return true if the wrapLines feature is enabled
16
*/
17
public boolean isWrapLines() {
18
- return getState("wrapLines", Boolean.class);
+ return getState("wrapLongLines", Boolean.class);
19
}
20
21
/**
22
* Enable or disable the wrapLines feature
23
* @param wrapLines boolean to enable or disable the wrapLines feature
24
25
public void setWrapLines(boolean wrapLines) {
26
- setState("wrapLines", wrapLines);
+ setState("wrapLongLines", wrapLines);
27
28
29
0 commit comments