Today I observed an unsual window behaviour:
Code: Select all
OpenWindow(1, 10, 10, 1024, 920, "", #PB_Window_SystemMenu)
; WindowBounds(1, 1024, 920, 1024, 920)
Repeat
Event=WaitWindowEvent()
Until Event=#PB_Event_CloseWindow
expand the window to maximum monitor size.
Enabling WindowBounds prevents this.
I didn't never see this before.
I don't want to resize the window, so I don't use
- #PB_Window_MinimizeGadget
- #PB_Window_MaximizeGadget
- #PB_Window_Maximize
- #PB_Window_Minimize
- #PB_Window_SizeGadget
Is this normal behaviour that I just haven't notice before?
I'm still using PB 6.20 x64 on Win11.