Skip to content
Snippets Groups Projects
Commit 0588cb3d authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

macOs: Add missing border on the TopBar

parent df6b027a
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,8 @@
### Bug fixes
- Fixed crash when switching rooms. (#433)
- Fixed crash during low connectivity. (#406)
- Fixed issue with downloading media that don't have a generated thumbnail.
- macOS: Add missing border on the top bar.
- Fallback to the login screen when the one-time keys cannot be uploaded.
## [0.5.5] - 2018-09-01
......
......@@ -80,6 +80,9 @@ protected:
#if !defined(Q_OS_MAC)
p.setPen(QPen(borderColor()));
p.drawLine(QPointF(0, height() - p.pen().width()), QPointF(width(), height()));
#else
p.setPen(QPen(borderColor()));
p.drawLine(QPointF(0, height()), QPointF(width(), height()));
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment