fix chatbubble sizing

This commit is contained in:
DenioD
2020-06-15 22:43:34 +02:00
parent 121b40cd2e
commit 68bfdb6234
2 changed files with 6 additions and 4 deletions

View File

@@ -59,7 +59,8 @@ void Chat::renderChatBox(Ui::MainWindow *ui, QListView *view, QLabel *label)
if (
(p.getName() == ui->contactNameMemo->text().trimmed()) &&
(p.getPartnerAddress() == c.second.getAddress()) &&
(c.second.isOutgoing() == true))
(c.second.isOutgoing() == true))
{
QStandardItem *Items = new QStandardItem(c.second.toChatLine());