I’ve encountered something weird when using TextEditor. For instance, the caret is not actually visible, though isCaretVisible returns true. And for second, I am not able to write anything in the editor.
This is the code:
text1.setBounds(140,200,100,100);
text1.setMultiLine (true);
text1.setReturnKeyStartsNewLine (true);
addAndMakeVisible(&text1);
Do I need to add anything else?