mirror of
https://github.com/transmission/transmission
synced 2024-12-25 17:17:31 +00:00
(trunk qt) fix minor quirk in r10454
This commit is contained in:
parent
da3168aa80
commit
2d103039a0
1 changed files with 2 additions and 1 deletions
|
@ -255,6 +255,7 @@ Details :: refresh( )
|
|||
}
|
||||
}
|
||||
myStateLabel->setText( string );
|
||||
const QString stateString = string;
|
||||
|
||||
// myHaveLabel
|
||||
double sizeWhenDone = 0;
|
||||
|
@ -341,7 +342,7 @@ Details :: refresh( )
|
|||
allPaused = false;
|
||||
}
|
||||
if( allPaused )
|
||||
string = torrents[0]->activityString( );
|
||||
string = stateString; // paused || finished
|
||||
else if( baseline.isNull( ) )
|
||||
string = mixed;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue