import "ecere" class Form1 : Window { caption = $"Form1"; background = formColor; borderStyle = sizable; hasMaximize = true; hasMinimize = true; hasClose = true; size = { 640, 258 }; anchor = { horz = -14, vert = -10 }; bool OnCreate(void) { return true; } Button button1 { this, caption = $"Test", position = { 312, 88 }; // HERE IS WHERE DE BUG HAPPENS, JUST TRY TYPING A DOT NEXT TO 'this' BELOW: this // <- WRITE A DOT '.' bool NotifyClicked(Button button, int x, int y, Modifiers mods) { return true; } }; } Form1 form1 {};