Hey Rory,
I came across some weird behavior of the text editor. I put my whole cabbage code in a plant to be able to move all widgets as one.
Since then, the text editor widget goes into edit mode whenever I touch any widget.
Here is an example:
<Cabbage>
form caption("Untitled") size(400, 300), guiMode("queue") pluginId("def1")
image bounds (10,10,380,280) colour("darkblue")
{
rslider bounds(50, 50, 100, 100), channel("gain"), range(0, 1, 0, 1, .01), text("Gain"), trackerColour("lime"), outlineColour(0, 0, 0, 50), textColour("white")
texteditor bounds(0, 0, 300, 20), align("right"), , fontColour(255, 255, 255, 255), colour(255,255,255,0), channel("text") text("text edit")caretColour("white")
}
</Cabbage>
Also, do you think you could change the texteditor widget, so that it goes out of edit mode after you press enter?
Thanks!