Changeset 10438


Ignore:
Timestamp:
Apr 2, 2010, 6:05:39 PM (13 years ago)
Author:
livings124
Message:

when the ratio is set to unlimited when resuming, reload the inspector

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/libtransmission/transmission.h

    r10437 r10438  
    18241824   
    18251825    /** A torrent is considered finished if it has met its seed ratio.
    1826         As a result, only paused torrent can be finished. */
     1826        As a result, only paused torrents can be finished. */
    18271827    tr_bool   finished;
    18281828}
  • trunk/macosx/Torrent.m

    r10437 r10438  
    289289        tr_torrentStart(fHandle);
    290290        [self update];
     291       
     292        //capture, specifically, ratio setting changing to unlimited
     293        [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateOptions" object: nil];
    291294    }
    292295}
  • trunk/macosx/TorrentCell.m

    r10437 r10438  
    652652    if ([NSApp isOnSnowLeopardOrBetter])
    653653        [bitmap drawInRect: barRect fromRect: NSZeroRect operation: NSCompositeSourceOver
    654             fraction: ([fDefaults boolForKey: @"SmallView"] ? 0.2 : 1.0) respectFlipped: YES hints: nil];
     654            fraction: ([fDefaults boolForKey: @"SmallView"] ? 0.25 : 1.0) respectFlipped: YES hints: nil];
    655655    else
    656656        [bitmap drawInRect: barRect];
Note: See TracChangeset for help on using the changeset viewer.