mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Fix freeze update state on timelines.
This commit is contained in:
parent
e200afa4f6
commit
a1f0d83386
2 changed files with 2 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ Linphone is dual licensed, and is available either :
|
|||
|
||||
Here are the general instructions to build Linphone for desktop. The specific instructions for each build platform is described just below.
|
||||
You will need the tools :
|
||||
- `cmake` >= 3.15 : download it in https://cmake.org/download/
|
||||
- `cmake` >= 3.22 : download it in https://cmake.org/download/
|
||||
- `python` : https://www.python.org/downloads/release/python-381/
|
||||
- `pip` : it is already embedded inside Python, so there should be nothing to do about it
|
||||
- `yasm` : https://yasm.tortall.net/Download.html
|
||||
|
|
|
|||
|
|
@ -142,6 +142,7 @@ ChatRoomModel::ChatRoomModel (const std::shared_ptr<linphone::ChatRoom>& chatRoo
|
|||
QObject::connect(coreManager->getContactsListModel(), &ContactsListModel::contactUpdated, this, &ChatRoomModel::fullPeerAddressChanged);
|
||||
QObject::connect(coreManager->getContactsListModel(), &ContactsListModel::contactUpdated, this, &ChatRoomModel::avatarChanged);
|
||||
|
||||
connect(this, &ChatRoomModel::stateChanged, this, &ChatRoomModel::updatingChanged);
|
||||
connect(this, &ChatRoomModel::fullPeerAddressChanged, this, &ChatRoomModel::usernameChanged);
|
||||
connect(this, &ChatRoomModel::messageCountReset, this, &ChatRoomModel::unreadMessagesCountChanged);
|
||||
connect(this, &ChatRoomModel::unreadMessagesCountChanged, coreManager, &CoreManager::eventCountChanged);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue