Effect of the 'Sizeable' property
rchastain opened this issue · comments
Roland Chastain commented
In examples/gui/animation/anim_test.lpr, I see this code:
procedure TMainForm.AfterCreate;
begin
// ...
Sizeable := False;
But the application is sizeable (tested on Linux). Is that property broken, or do I wrongly understand its meaning?
Fred vS commented
Hello Roland.
It seems that Sizeable := False; only works for Windows, on Linux there is no effect.
See my answer on Eschecs issue https://gitlab.com/rchastain/eschecs/-/issues/43#note_1225640386
Also on Windows property OnResize := @OnResized; is not executed when a window is resized. (but ok on Linux)
Roland Chastain commented
Hello Fred! Thank you very much.
Graeme Geldenhuys commented
Thank you Roland, it is definitely a regression error. I'll take a look.