| 944 | } |
| 945 | |
| 946 | void MeasureDock::UpdateFont() |
| 947 | { |
| 948 | QFont font = this->font(); |
| 949 | font.setPointSizeF(AppConfig::Instance().appOptions.fontSize); |
| 950 | ui::set_form_font(this, font); |
| 951 | font.setPointSizeF(font.pointSizeF() + 1); |
| 952 | this->parentWidget()->setFont(font); |
| 953 | |
| 954 | adjusLabelSize(); |
| 955 | } |
| 956 | |
| 957 | void MeasureDock::adjust_form_size(QWidget *wid) |
| 958 | { |
nothing calls this directly
no test coverage detected