Toolbar and window alignment

macOS 11.4, Xojo 2019r3.2, Desktop app

Something has apparently changed. When I add a toolbar to a window, if I don’t allow sufficient empty space at the bottom of the window, it causes items to cut off the bottom of the window. Everything is fine if I leave empty space at the bottom that is about equal to the size of the toolbar.

Is this going to be the standard behaviour or is this a bug in 19r3.2, or have I set some parameter somewhere I am unaware of?

thanks

There’s issues with older versions of Xojo, Toolbars, and Big Sur. I do not recall in which version it was fixed.

The hack to fix the wrong window size is to do this in the Window’s Open event:

self.Height = self.Height

Thanks Tim