ID:2083756
 
BYOND Version:510.1341
Operating System:Windows 7 Ultimate 64-bit
Web Browser:Chrome 50.0.2661.102
Applies to:Dream Seeker
Status: Open

Issue hasn't been assigned a status value.
Descriptive Problem Summary:

on-resize events do not get called when a maximized window is torn off by clicking on the titlebar and dragging it elsewhere.
I think there might be a report for this already. The problem is I don't have info on what messages Windows sends in this case.
WM_MOVING would be my guess. Maximized windows don't move. So if a window is maximized and it starts moving, it's no longer maximized.

It's possible that WM_MOVING or WM_SIZE are being suppressed though if you are handling WM_WINDOWPOSCHANGED in your code. If you don't call DefWindowProc, WM_MOVING and WM_SIZE won't be called.

This one's not priority for me. I'm going to be disabling resizing the window dynamically during runtime soon enough. It's more trouble than it's worth. I'd rather write a menu to handle it for me.

WM_ENTERSIZEMOVE is a second candidate.
It's probably doing SetWindowPos() directly, based on some new Google searches. That'll be a tough case to catch. I'll get to it at some point.