Set fixed height for the DateSeparator & TextLabel

This commit is contained in:
Konstantinos Sideris 2018-05-26 10:34:34 +03:00
parent bcba977f4c
commit 90595beb16
3 changed files with 5 additions and 3 deletions

View File

@ -68,12 +68,14 @@ public:
this,
&TextLabel::adjustHeight);
document()->setDocumentMargin(0);
setFixedHeight(20);
}
void wheelEvent(QWheelEvent *event) override { event->ignore(); }
private slots:
void adjustHeight(const QSizeF &size) { setMinimumHeight(size.height()); }
void adjustHeight(const QSizeF &size) { setFixedHeight(size.height()); }
};
class TimelineItem : public QWidget

View File

@ -86,8 +86,6 @@ class DateSeparator : public QWidget
public:
DateSeparator(QDateTime datetime, QWidget *parent = nullptr);
QSize sizeHint() const override { return QSize(width(), height_ + 2 * HMargin); }
void setTextColor(QColor color) { textColor_ = color; }
void setBoxColor(QColor color) { boxColor_ = color; }

View File

@ -60,6 +60,8 @@ DateSeparator::DateSeparator(QDateTime datetime, QWidget *parent)
QFontMetrics fm{font_};
width_ = fm.width(msg_) + HPadding * 2;
height_ = fm.ascent() + 2 * VPadding;
setFixedHeight(height_ + 2 * HMargin);
}
void