| 216 | } |
| 217 | |
| 218 | QSize TimelineBar::minimumSizeHint() const |
| 219 | { |
| 220 | return QSize(margin * 4 + borderWidth * 2 + 100, |
| 221 | margin * 4 + borderWidth * 2 + m_eidAxisRect.height() * 2 + |
| 222 | m_highlightingRect.height() + horizontalScrollBar()->sizeHint().height()); |
| 223 | } |
| 224 | |
| 225 | void TimelineBar::resizeEvent(QResizeEvent *e) |
| 226 | { |
no test coverage detected