summary refs log tree commit diff
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-09-08 14:16:51 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-09-08 14:16:51 +0300
commit0588cb3dbf0a1c78d54f8f720ae488fc7b61f4fd (patch)
treec2d9812cc678651cab9367eff0a0d13f5fb5224b
parentAdd changelog (diff)
downloadnheko-0588cb3dbf0a1c78d54f8f720ae488fc7b61f4fd.tar.xz
macOs: Add missing border on the TopBar
-rw-r--r--CHANGELOG.md2
-rw-r--r--src/TopRoomBar.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md

index 523910c3..37b4793b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -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 diff --git a/src/TopRoomBar.h b/src/TopRoomBar.h
index 21f8325a..42f647db 100644 --- a/src/TopRoomBar.h +++ b/src/TopRoomBar.h
@@ -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 }