[iOS] RadioButton throws CGContextSetLineWidth - Fix (#25542)

* [iOS] RadioButton throws CGContextSetLineWidth - fix

* Update RadioButton.cs
This commit is contained in:
Jakub Florkowski 2024-11-09 08:12:55 -08:00 коммит произвёл GitHub
Родитель b2d1c318cb
Коммит 50adaed851
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -317,7 +317,7 @@ namespace Microsoft.Maui.Platform
void DrawBorder(CGContext ctx)
{
if (_strokeThickness == 0)
if (_strokeThickness <= 0)
return;
if (IsBorderDashed())