diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-09-07 22:22:07 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-11-23 20:06:14 +0100 |
commit | ebeb1eb7721f357b016f6e914509918b6bee5356 (patch) | |
tree | 57ab5d3588cf6d01b497cba762056ea132044cf6 /src/ui/Avatar.cpp | |
parent | Fix new messages not arriving in qml timeline (diff) | |
download | nheko-ebeb1eb7721f357b016f6e914509918b6bee5356.tar.xz |
Implement avatars in qml timeline
Diffstat (limited to 'src/ui/Avatar.cpp')
-rw-r--r-- | src/ui/Avatar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/Avatar.cpp b/src/ui/Avatar.cpp index 501a8968..e4a90f81 100644 --- a/src/ui/Avatar.cpp +++ b/src/ui/Avatar.cpp @@ -101,7 +101,7 @@ Avatar::setIcon(const QIcon &icon) void Avatar::paintEvent(QPaintEvent *) { - bool rounded = QSettings().value("user/avatar/circles", true).toBool(); + bool rounded = QSettings().value("user/avatar_circles", true).toBool(); QPainter painter(this); painter.setRenderHint(QPainter::Antialiasing); |