-
I have been trying to build me own widget that I want it to be mostly like Input widget, but without ability to modify text, so like a text with a cursor that can be moved in it. To do so, I have a new class that inherits from Input class and I override some of the methods. While doing so, I noticed that some of the methods like For example, if I change the
I still see the cursor appear in the end of the text instead of it appearing over the first character as I would expect. Is there any explanation of why this happens and how I can prevent it? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You probably want to have a read about default behaviours, and preventing them. |
Beta Was this translation helpful? Give feedback.
You probably want to have a read about default behaviours, and preventing them.