EFPrefix / EFQRCode

A better way to operate QR Code in Swift, support iOS, macOS, watchOS and tvOS.

Home Page:https://efprefix.github.io/EFQRCode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ignoring 'isTimingPointStyled' param for "circle" pointStyle

ArtRoman opened this issue · comments

Issue Description

Description

Source comment says:

isTimingPointStyled: Wether the timing points should be styled (or remain square).

But when I set isTimingPointStyled to false I see that eyes are still rounded when pointStyle is circle. All is OK for other types of pointStyle.

Reproduce

EFQRCode.generate(
    for: "My text",
    size: EFIntSize(width: 200, height: 200),
    icon: UIImage(named: "AppIcon")?.cgImage,
    pointStyle: .circle,
    isTimingPointStyled: false
)