Composer: disable predictive type on all platforms

This commit is contained in:
Thomas Ricouard 2024-05-17 13:55:55 +02:00
parent 04af087c4b
commit ba3d8b1882

View file

@ -45,9 +45,7 @@ extension TextView.Representable {
textView.allowsEditingTextAttributes = false
textView.returnKeyType = .default
textView.allowsEditingTextAttributes = true
#if targetEnvironment(macCatalyst)
textView.inlinePredictionType = .no
#endif
textView.inlinePredictionType = .no
self.getTextView?(textView)
}