update// added chatmessages to chatwindow
This commit is contained in:
@@ -982,11 +982,17 @@ void Controller::refreshTransactions()
|
||||
|
||||
// Update model data, which updates the table view
|
||||
transactionsTableModel->replaceData(txdata);
|
||||
//chatModel->renderChatBox();
|
||||
chatModel->showMessages();
|
||||
chatModel->renderChatBox(ui->listChatMemo);
|
||||
//chatModel->showMessages();
|
||||
});
|
||||
}
|
||||
|
||||
void Controller::refreshChat(QListWidget *listWidget)
|
||||
{
|
||||
qDebug() << "Called Controller::refreshChat(QListWidget *listWidget)";
|
||||
chatModel->renderChatBox(listWidget);
|
||||
}
|
||||
|
||||
// If the wallet is encrpyted and locked, we need to unlock it
|
||||
void Controller::unlockIfEncrypted(std::function<void(void)> cb, std::function<void(void)> error)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user