Bug 651480 - Only show the filter list when there are multiple filters on MacOS X. r=joshmoz

This commit is contained in:
Mounir Lamouri 2011-05-09 16:47:51 +02:00
Родитель fd5baf36f7
Коммит e57b2c0c43
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -368,7 +368,7 @@ nsFilePicker::GetLocalFiles(const nsString& inTitle, PRBool inAllowMultiple, nsC
// are not available on 10.5 and without using them it happens to be buggy.
int result;
nsCocoaUtils::PrepareForNativeAppModalDialog();
if (nsToolkit::OnSnowLeopardOrLater()) {
if (mFilters.Length() > 1 && nsToolkit::OnSnowLeopardOrLater()) {
// [NSURL initWithString:] (below) throws an exception if URLString is nil.
if (!theDir) {
theDir = @"";