| 494 | } |
| 495 | |
| 496 | void DsoTriggerDock::UpdateFont() |
| 497 | { |
| 498 | QFont font = this->font(); |
| 499 | font.setPointSizeF(AppConfig::Instance().appOptions.fontSize); |
| 500 | ui::set_form_font(this, font); |
| 501 | font.setPointSizeF(font.pointSizeF() + 1); |
| 502 | this->parentWidget()->setFont(font); |
| 503 | } |
| 504 | |
| 505 | } // namespace dock |
| 506 | } // namespace pv |
nothing calls this directly
no test coverage detected