| Index: Source/platform/mac/ThemeMac.mm
|
| diff --git a/Source/platform/mac/ThemeMac.mm b/Source/platform/mac/ThemeMac.mm
|
| index 4e702e1b7071e584c8c439a3175eed4eda8ffcbb..9d37a4f19e3264f0028eb73136ff5d61e73e04bb 100644
|
| --- a/Source/platform/mac/ThemeMac.mm
|
| +++ b/Source/platform/mac/ThemeMac.mm
|
| @@ -349,6 +349,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;
|
|
|