| 70 | } |
| 71 | |
| 72 | void NoteDock::textFontChanged(const QFont& font) { |
| 73 | CONDITIONAL_LOCK_RETURN; |
| 74 | |
| 75 | for (auto* note : m_notesList) |
| 76 | note->setTextFont(font); |
| 77 | } |
| 78 | |
| 79 | //************************************************************* |
| 80 | //************ SLOTs for changes triggered in Note ************ |
nothing calls this directly
no test coverage detected