Commit 102c8861 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(App): little fixes

parent da0b235d
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
#include <QFileDialog> #include <QFileDialog>
#include <QFileInfo> #include <QFileInfo>
#include <QImage> #include <QImage>
#include <QtDebug>
#include <QTimer> #include <QTimer>
#include <QUuid> #include <QUuid>
...@@ -273,6 +272,8 @@ void ChatModel::setSipAddress (const QString &sipAddress) { ...@@ -273,6 +272,8 @@ void ChatModel::setSipAddress (const QString &sipAddress) {
mChatRoom = core->getChatRoomFromUri(::Utils::appStringToCoreString(sipAddress)); mChatRoom = core->getChatRoomFromUri(::Utils::appStringToCoreString(sipAddress));
Q_CHECK_PTR(mChatRoom.get()); Q_CHECK_PTR(mChatRoom.get());
handleIsComposingChanged(mChatRoom);
if (mChatRoom->getUnreadMessagesCount() > 0) if (mChatRoom->getUnreadMessagesCount() > 0)
resetMessagesCount(); resetMessagesCount();
......
...@@ -36,7 +36,7 @@ QtObject { ...@@ -36,7 +36,7 @@ QtObject {
property QtObject composingText: QtObject { property QtObject composingText: QtObject {
property color color: Colors.b property color color: Colors.b
property int height: 25 property int height: 25
property int leftPadding: 6 property int leftPadding: 20
property int pointSize: Units.dp * 9 property int pointSize: Units.dp * 9
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment