summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-12 17:14:53 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-12 17:14:53 +0300
commit718562737cebf956dae219d1152240367ddf4aa3 (patch)
tree6552caf1eef9628e950875b6b40dff9414bcd996 /src
parentUse less contrast on the sidebar (diff)
downloadnheko-718562737cebf956dae219d1152240367ddf4aa3.tar.xz
Don't use icons as room avatars
Diffstat (limited to 'src')
-rw-r--r--src/ChatPage.cc3
-rw-r--r--src/TextInputWidget.cc2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/ChatPage.cc b/src/ChatPage.cc

index db911972..33f98af3 100644 --- a/src/ChatPage.cc +++ b/src/ChatPage.cc
@@ -192,8 +192,7 @@ void ChatPage::updateTopBarAvatar(const QString &roomid, const QPixmap &img) if (current_room_.id() != roomid) return; - QIcon icon(img); - this->top_bar_->updateRoomAvatar(icon); + top_bar_->updateRoomAvatar(img.toImage()); } void ChatPage::updateOwnProfileInfo(const QUrl &avatar_url, const QString &display_name) diff --git a/src/TextInputWidget.cc b/src/TextInputWidget.cc
index ec92e77d..dedd3a81 100644 --- a/src/TextInputWidget.cc +++ b/src/TextInputWidget.cc
@@ -66,7 +66,7 @@ TextInputWidget::TextInputWidget(QWidget *parent) void TextInputWidget::onSendButtonClicked() { - auto msg_text = input_->text(); + auto msg_text = input_->text().trimmed(); if (msg_text.isEmpty()) return;