render only memos from selected nickname

This commit is contained in:
DenioD
2020-04-30 20:17:08 +02:00
parent d0b88255f2
commit 8f3bc21844
6 changed files with 47 additions and 47 deletions

View File

@@ -985,7 +985,7 @@ void Controller::refreshTransactions()
// Update model data, which updates the table view
transactionsTableModel->replaceData(txdata);
chatModel->renderChatBox(ui->listChatMemo);
chatModel->renderChatBox(ui, ui->listChatMemo);
refreshContacts(
ui->listContactWidget
);
@@ -994,7 +994,7 @@ void Controller::refreshTransactions()
void Controller::refreshChat(QListWidget *listWidget)
{
chatModel->renderChatBox(listWidget);
chatModel->renderChatBox(ui, listWidget);
}
void Controller::refreshContacts(QListWidget *listWidget)