update localizable strings, news; clarify a little logic for the filter

This commit is contained in:
Mitchell Livingston
2008-10-25 00:34:09 +00:00
parent d50048566c
commit 6b4170e970
3 changed files with 3 additions and 3 deletions

2
NEWS
View File

@@ -12,7 +12,7 @@ http://trac.transmissionbt.com/query?group=component&milestone=1.40
- Mac
+ Option to automatically update the blocklist weekly
+ In the file inspector tab, show progress and size for folders
+ Scrollbars won't temporarily disappear when the main window auto-resizes
+ Scrollbars correctly appear when the main window auto-resizes
+ Sparkle updated to 1.5
- GTK+
+ Option to automatically update the blocklist weekly

View File

@@ -1974,7 +1974,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
if (isActive)
active++;
if (filterStatus && (!(filterActive && isActive) && !filterSeed))
if (filterStatus && !((filterActive && isActive) || filterSeed))
continue;
}
else
@@ -1984,7 +1984,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
if (isActive)
active++;
if (filterStatus && (!(filterActive && isActive) && !filterDownload))
if (filterStatus && !((filterActive && isActive) || filterDownload))
continue;
}
}

Binary file not shown.