NULLREGION means that the entire window should be clipped out, and its
children displayed instead. The change broke some offscreening decisions
when both parent and children have a GL drawable created but drawing
actually happens on the child window.
Fixes: 786d9d1685ac220081b10cc779d4d331ddd2fc52
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57503
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/7014
(For after the code freeze.)
I think we want to have this DLL living in Wine for easier development, and probably dynamically load our custom Chromium fork from here. (just like MSHTML and wine-Gecko)
The code for that fork could then be created in its own repo.
--
v2: embeddedbrowserwebview: Create CreateWebViewEnvironmentWithOptionsInternal stub.
embeddedbrowserwebview: Add stub dll.
https://gitlab.winehq.org/wine/wine/-/merge_requests/7032
Some app inserts textual items in listview with CR/LF in them.
These are not displayed on Windows, while Wine draws an empty square box for each CR or LF.
Manual testing on Windows show that CR or LF are not displayed, while other
characters < 32 are displayed.
A couple of tests in this MR show that:
- the CR / LF are stored in listview (as they can be retrieved)
- the CR / LF are somehow accounted in string width
So, try to fix this by not passing CR nor LF to DrawText().
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/7031
(For after the code freeze.)
I think we want to have this DLL living in Wine for easier development, and probably dynamically load our custom Chromium fork from here. (just like MSHTML and wine-Gecko)
The code for that fork could then be created in its own repo.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/7032
"erwin Data Modeler" crashes under Wine when making ODBC connections (to native ODBC drivers on macOS via iODBC) due to passing in `NULL` values in places. These checks allow execution to proceed successfully.
--
v2: odbc32: Add null pointer checks to update_result_lengths helpers.
odbc32: Avoid crashing if str is null in debugstr_sqlstr.
https://gitlab.winehq.org/wine/wine/-/merge_requests/7013