virtual */
| 473 | } |
| 474 | |
| 475 | /* virtual */ void TextfileWindow::AfterLoadText() |
| 476 | { |
| 477 | this->link_anchors.clear(); |
| 478 | |
| 479 | if (StrEndsWithIgnoreCase(this->filename, ".md")) this->AfterLoadMarkdown(); |
| 480 | |
| 481 | if (this->GetWidget<NWidgetStacked>(WID_TF_SEL_JUMPLIST)->SetDisplayedPlane(this->jumplist.empty() ? SZSP_HORIZONTAL : 0)) this->ReInit(); |
| 482 | } |
| 483 | |
| 484 | /** |
| 485 | * Post-processing of markdown files. |
no test coverage detected