[Lazarus] Autosize not doing its job in Lazarus 2.2.4

2024-02-08 Thread Timothy Groves via lazarus
If I set font sizes on controls using the following code:   index := ComponentCount;   while (index > 0) do begin     dec (index);     if (Components [index] is tControl) then   TControl (Components [index]).Font.Size := dGlobal.FontSize;   end; then the form will not resize to match.  AutoS

Re: [Lazarus] Need a good replacement for TMemo

2024-02-08 Thread Juha Manninen via lazarus
OK, I found the reason. I had made experimental reordering in component palette pages. A new installed component does not go to a user modified page. After doing "Restore defaults" the RichMemo icon became visible. It means there is a bug in the palette config code. :( Juha -- ___

Re: [Lazarus] Need a good replacement for TMemo

2024-02-08 Thread Juha Manninen via lazarus
On Thu, Feb 8, 2024 at 12:18 AM Werner Pamler via lazarus < lazarus@lists.lazarus-ide.org> wrote: > What "does not show up mean"? No icon on the component palette? In this > case you probably missed to install the designtime package which is a bit > hidden in the "ide" folder among all the interfa