| 652 | } |
| 653 | |
| 654 | void UICodeEditor::onDocumentLoaded( TextDocument* ) { |
| 655 | if ( mInvalidateOnLoaded ) { |
| 656 | ensureMainThread( [this] { onDocumentLoaded(); } ); |
| 657 | mInvalidateOnLoaded = false; |
| 658 | } |
| 659 | } |
| 660 | |
| 661 | void UICodeEditor::invalidateLineWrapMaxWidth( bool force ) { |
| 662 | switch ( mLineWrapType ) { |
no test coverage detected