Changeset 10454


Ignore:
Timestamp:
Apr 6, 2010, 3:10:48 AM (13 years ago)
Author:
charles
Message:

(trunk qt) tweak paused/stopped/finished in the details dialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/qt/details.cc

    r10442 r10454  
    246246        string = none;
    247247    else {
     248        const tr_torrent_activity activity = torrents[0]->getActivity( );
    248249        string = torrents[0]->activityString( );
    249         foreach( const Torrent* t, torrents ) {
    250             if( string != t->activityString( ) ) {
     250        foreach( const Torrent * t, torrents ) {
     251            if( activity != t->getActivity( ) ) {
    251252                string = mixed;
    252253                break;
     
    341342        }
    342343        if( allPaused )
    343             string = tr( "Stopped" );
     344            string = torrents[0]->activityString( );
    344345        else if( baseline.isNull( ) )
    345346            string = mixed;
Note: See TracChangeset for help on using the changeset viewer.