Properly display the bottom border on the TopRoomBar

pull/1/head
Konstantinos Sideris 7 years ago
parent 824563e38a
commit 4f41c0df4d
  1. 3
      include/TopRoomBar.h

@ -79,7 +79,8 @@ protected:
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
p.setPen(QPen(borderColor()));
p.drawLine(QPointF(0, height()), QPointF(width(), height()));
p.drawLine(QPointF(0, height() - p.pen().widthF()),
QPointF(width(), height() - p.pen().widthF()));
}
private:

Loading…
Cancel
Save