mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 06:06:10 -04:00
- Moved the created GxsIdRSTreeWidgetItem from the forum fill thread to the main thread so the signal to fill the id can be processed.
- Removed QTimer from GxsIdTreeWidgetItem and GxsIdRSTreeWidgetItem. - Added new tick signal (every second) on Rshare to fill the id. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6238 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
c74a36fff8
commit
813a8fad34
5 changed files with 27 additions and 39 deletions
|
@ -598,6 +598,11 @@ void Rshare::blinkTimer()
|
|||
{
|
||||
mBlink = !mBlink;
|
||||
emit blink(mBlink);
|
||||
|
||||
if (mBlink) {
|
||||
/* Tick every second (create an own timer when needed) */
|
||||
emit secondTick();
|
||||
}
|
||||
}
|
||||
|
||||
bool Rshare::loadCertificate(const std::string &accountId, bool autoLogin, std::string gpgId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue