Here is a tweak - fix for at App Runtime 'Window Height' that can be,
inconsistant across hardware, when Resize is enabled in App Settings
and when using the hidden global function g_OnGetMinMaxInfo()
example should bring consistancy in Application Display-Layout 'on resize' minimum height
across platforms and Hardware - tested on monitors of various size with same Os display res settings:
Startup Actions:
Defined in Global Functions:Code:nAppRuntimeY = Window.GetSize(Application.GetWndHandle()).Height;
give it a whirl- test if you have several monitors - systems of differing SizeCode:--SAppMinMaxSize function g_OnGetMinMaxInfo() --min and max on resize of App window tbAppSize = {}; tbAppSize.MinX = 640; --width tbAppSize.MinY = nAppRuntimeY; --actual height at app runtime tbAppSize.MaxX = 800; tbAppSize.MaxY = 600; return tbAppSize; end --EAppMinMaxSize

