Open valkum opened 4 years ago
Currently resizeable, borderless and titleless on MS Windows will set the flag WS_OVERLAPPEDWINDOW | WS_THICKFRAME | WS_MAXIMIZEBOX | WS_THICKFRAME which creates some problems according to https://github.com/rossy/borderless-window/blob/master/borderless-window.c
WS_OVERLAPPEDWINDOW | WS_THICKFRAME | WS_MAXIMIZEBOX | WS_THICKFRAME
They actually start with WS_OVERLAPPEDWINDOW | WS_SIZEBOX and "remove the borders by expanding the client area"
WS_OVERLAPPEDWINDOW | WS_SIZEBOX
Would it be possible to implement this in minifb?
I guess this can be changed. Would you be willing to do a PR with the required changes?
I can try sometime next week.
Currently resizeable, borderless and titleless on MS Windows will set the flag
WS_OVERLAPPEDWINDOW | WS_THICKFRAME | WS_MAXIMIZEBOX | WS_THICKFRAME
which creates some problems according to https://github.com/rossy/borderless-window/blob/master/borderless-window.cThey actually start with
WS_OVERLAPPEDWINDOW | WS_SIZEBOX
and "remove the borders by expanding the client area"Would it be possible to implement this in minifb?