(gtk) #680: "Reverse Sort Order" doesn't work for "Sort by Progress"

This commit is contained in:
Charles Kerr 2008-02-04 04:30:24 +00:00
parent b0103174f6
commit 4efdcab622
1 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ static int
compareDouble( double a, double b )
{
if( a < b ) return -1;
if( b > a ) return 1;
if( b < a ) return 1;
return 0;
}
@ -244,7 +244,7 @@ compareByProgress( GtkTreeModel * model,
sb = tr_torrentStatCached( tb );
ret = compareDouble( sa->percentDone, sb->percentDone );
if( !ret )
ret = compareDouble( sa->ratio, sa->ratio );
ret = compareDouble( sa->ratio, sb->ratio );
return ret;
}