minor fix for menu icon scaling (thanks @OlgaTPark again)

This commit is contained in:
Cameron Kaiser 2020-11-01 19:49:27 -08:00
parent 53381bf934
commit 1d72924e69
1 changed files with 6 additions and 0 deletions

View File

@ -461,6 +461,12 @@ nsMenuItemIconX::OnFrameComplete(imgIRequest* aRequest)
return NS_ERROR_FAILURE;
}
// Fixes issues with scaling the menu icon on 10.4 and 10.5.
// According to Apple's doc, this is deprecated and unneeded in 10.6+.
// See OlgaTPark/tenfourfox #14.
if (!nsCocoaFeatures::OnSnowLeopardOrLater())
[newImage setScalesWhenResized:YES];
[newImage setSize:NSMakeSize(kIconWidth, kIconHeight)];
[mNativeMenuItem setImage:newImage];