Index: Source/platform/mac/ThemeMac.mm |
diff --git a/Source/platform/mac/ThemeMac.mm b/Source/platform/mac/ThemeMac.mm |
index 8da614bd9e382015e675ec51cc8cbfa29f5d93c6..7f3446114be60c1749ee4a696c996ba3c7ae3af2 100644 |
--- a/Source/platform/mac/ThemeMac.mm |
+++ b/Source/platform/mac/ThemeMac.mm |
@@ -367,6 +367,8 @@ static NSButtonCell *radio(ControlStates states, const IntRect& zoomedRect, floa |
setControlSize(radioCell, radioSizes(), zoomedRect.size(), zoomFactor); |
// Update the various states we respond to. |
+ // Cocoa draws NSMixedState NSRadioButton as NSOnState so we don't want that. |
+ states &= ~IndeterminateControlState; |
updateStates(radioCell, states); |
return radioCell; |