You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
get() and set() are not symmetrical as the output get() is not getting localised.
This behaviour has changed in cocoa and maybe the best advice is to stringify before setting any data in a control, so maybe vanilla should warn if this is happening.
The text was updated successfully, but these errors were encountered:
To be valid object value, the cell must have a formatter capable of converting the object to and from its textual representation. The value of this property is nil if an object has not been assigned to the cell.
but the cell.formatter() is None, tried to look for a default formatter... but there isn't one
The EditText documentation now says that the value should be a string if no formatter is defined. Do you still think we should raise a warning if the value is not a string and there is no formatter? I'm worried about that being very noisy.
(in py3)
When the value is not a string, cocoa/pyObjc tries to localise somehow, fe numbers. This is not nice and different behaviour.
get()
andset()
are not symmetrical as the outputget()
is not getting localised.This behaviour has changed in cocoa and maybe the best advice is to stringify before setting any data in a control, so maybe vanilla should warn if this is happening.
The text was updated successfully, but these errors were encountered: