Changeset 11519


Ignore:
Timestamp:
Dec 12, 2010, 4:07:04 PM (12 years ago)
Author:
charles
Message:

(trunk gtk, qt) "Show 'queued to verify' torrents in the 'verifying' filter" -- added to trunk.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gtk/filter.c

    r11134 r11519  
    634634
    635635        case ACTIVITY_FILTER_VERIFYING:
    636             return st->activity == TR_STATUS_CHECK ;
     636            return ( st->activity == TR_STATUS_CHECK ) || ( st->activity == TR_STATUS_CHECK_WAIT );
    637637
    638638        case ACTIVITY_FILTER_ERROR:
  • trunk/qt/torrent-filter.cc

    r11446 r11519  
    160160            break;
    161161        case FilterMode::SHOW_VERIFYING:
    162             accepts = tor->isVerifying( );
     162            accepts = tor->isVerifying( ) || tor->isWaitingToVerify( );
    163163            break;
    164164        case FilterMode::SHOW_ERROR:
Note: See TracChangeset for help on using the changeset viewer.