Changeset 3648

Show
Ignore:
Timestamp:
01/28/06 18:38:41 (3 years ago)
Author:
morris
Message:

Show groups limit in KB, not bytes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • WiredClient/trunk/WCAccountEditor.m

    r3570 r3648  
    359359 
    360360        if([account downloadSpeedLimit] > 0) 
    361                 [_downloadSpeedTextField setIntValue:[account downloadSpeedLimit]]; 
     361                [_downloadSpeedTextField setIntValue:(double) [account downloadSpeedLimit] / 1024.0]; 
    362362 
    363363        if([account uploadSpeedLimit] > 0) 
    364                 [_uploadSpeedTextField setIntValue:[account uploadSpeedLimit]]; 
     364                [_uploadSpeedTextField setIntValue:(double) [account uploadSpeedLimit] / 1024.0]; 
    365365 
    366366        if([_typePopUpButton selectedItem] == _groupMenuItem) {