diff options
-rw-r--r-- | vcl/source/control/button.cxx | 5 | ||||
-rw-r--r-- | vcl/uiconfig/theme_definitions/ios/definition.xml | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx index 5ab14d2c2db2..864214b66e43 100644 --- a/vcl/source/control/button.cxx +++ b/vcl/source/control/button.cxx @@ -2054,8 +2054,9 @@ void RadioButton::ImplDraw( OutputDevice* pDev, DrawFlags nDrawFlags, ImplDrawAlignedImage( pDev, aPos, aSize, 1, nTextStyle ); - rMouseRect = tools::Rectangle( aPos, aSize ); - rMouseRect.SetLeft( rPos.X() ); + rMouseRect = tools::Rectangle(aPos, aSize); + rMouseRect.SetLeft(rPos.X()); + rMouseRect.SetTop(rPos.Y()); rStateRect.SetLeft( rPos.X() ); rStateRect.SetTop( rMouseRect.Top() ); diff --git a/vcl/uiconfig/theme_definitions/ios/definition.xml b/vcl/uiconfig/theme_definitions/ios/definition.xml index 61d6aa21578e..b0e26f01079c 100644 --- a/vcl/uiconfig/theme_definitions/ios/definition.xml +++ b/vcl/uiconfig/theme_definitions/ios/definition.xml @@ -85,7 +85,7 @@ </pushbutton> <radiobutton> - <part value="Entire" width="32" height="32"> + <part value="Entire" width="26" height="26"> <state enabled="true" pressed="false" button-value="true"> <image source="tick-on.svg" /> </state> |