hotfixes #271
-
I noticed that certain issues, like the one from a couple of weeks ago about the input not holding on to the reference, are added to the fix-251 branch. Since the base functionality of the input system requires the ability to access and modify the content that the users enter, could we have smaller hotfixes that get pulled into master more frequently? Certain essential features, such as the ability to clear the content of the input field on return are necessary for many applications involving input. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We maintain two version of every component, one supporting Every components are made this way, except for I believe we should make |
Beta Was this translation helpful? Give feedback.
Input
is different from others components, because this is the only component modifying its input.We maintain two version of every component, one supporting
std::wstring
(legacy/depreacted) and one supportingstd::string
. Fortunately the implementation are all made fromstd::string
and we just convertstd::wstring
tostd::string
in constructor for legacy users.Every components are made this way, except for
Input
, which behave in the opposite order. We convertstd::string
tostd::wstring
and back when updated.I believe we should make
Input
implemented in two version for both type. That requires some work.