Merge pull request #1646 from Diapolo/only_upd_changed_vals
only update cached values in ClientModel::updateTimer() when they are changed, and set cached values before signal is emitted
This commit is contained in:
commit
381e87cbd2
1 changed files with 5 additions and 3 deletions
|
@ -60,10 +60,12 @@ void ClientModel::updateTimer()
|
|||
int newNumBlocksOfPeers = getNumBlocksOfPeers();
|
||||
|
||||
if(cachedNumBlocks != newNumBlocks || cachedNumBlocksOfPeers != newNumBlocksOfPeers)
|
||||
emit numBlocksChanged(newNumBlocks, newNumBlocksOfPeers);
|
||||
|
||||
{
|
||||
cachedNumBlocks = newNumBlocks;
|
||||
cachedNumBlocksOfPeers = newNumBlocksOfPeers;
|
||||
|
||||
emit numBlocksChanged(newNumBlocks, newNumBlocksOfPeers);
|
||||
}
|
||||
}
|
||||
|
||||
void ClientModel::updateNumConnections(int numConnections)
|
||||
|
|
Loading…
Reference in a new issue