Skip to content

Commit

Permalink
Merge pull request #378 from ensan-hcl/fix/build
Browse files Browse the repository at this point in the history
[Bug] コンパイルエラーを修正
  • Loading branch information
ensan-hcl authored Nov 13, 2023
2 parents 1da967e + 841f4bb commit bbf86a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ struct QwertyDataProvider<Extension: ApplicationSpecificKeyboardViewExtension> {
)
}

@MainActor static func spaceKey() -> any QwertyKeyModelProtocol {
Extension.SettingProvider.useNextCandidateKey ? QwertyNextCandidateKeyModel<Extension>() : QwertySpaceKeyModel<Extension>()
@MainActor static func spaceKey() -> any QwertyKeyModelProtocol<Extension> {
Extension.SettingProvider.useNextCandidateKey ? QwertyNextCandidateKeyModel() : QwertySpaceKeyModel()
}

// 横に並べる
Expand Down

0 comments on commit bbf86a9

Please sign in to comment.