| 1067 | } |
| 1068 | |
| 1069 | void UICodeEditor::setLineWrapType( LineWrapType lineWrapType ) { |
| 1070 | if ( mLineWrapType != lineWrapType ) { |
| 1071 | mLineWrapType = lineWrapType; |
| 1072 | scrollToCursor(); |
| 1073 | invalidateLineWrapMaxWidth( true ); |
| 1074 | } |
| 1075 | } |
| 1076 | |
| 1077 | void UICodeEditor::setLineWrapKeepIndentation( bool keep ) { |
| 1078 | auto config = mDocView.getConfig(); |
no outgoing calls
no test coverage detected