PB

Results 102 comments of PB

As I hinted before, I am not sure if there is anything to fix here. Cursory Google search showed that the screen DC is used for capturing a control image...

FWIW, this works for me on Windows for capturing a window client area (works also when adjusted to use `wxWindowDC` instead of `wxClientDC`) into a bitmap: ```cpp wxBitmap WindowToBitmap(wxWindow& w)...

> Implementing it for `wxWindowDC` in wxMSW should probably rely on using `WM_PRINTCLIENT`... As I wrote above, this did not work for me for generic windows (tested `wxGrid` and `wxDataViewTreeCtrl`),...

Just curious: So setting `wx_msw_window_no_composited` to `1` prior to starting an application will not result in the exactly same behaviour as in 3.2?

> Just curious: So setting `wx_msw_window_no_composited` to `1` prior to starting an application will not result in the exactly same behaviour as in 3.2? To answer my own question, after...

I believe that most Win32 dark-mode implementations are based on this https://github.com/ysc3839/win32-darkmode/blob/master/win32-darkmode/DarkMode.h (there are some changes in the delay_load branch). There are few checks for builds < 1836, e.g.: https://github.com/ysc3839/win32-darkmode/blob/cc26549b65b25d6f3168a80238792545bd401271/win32-darkmode/DarkMode.h#L116...

> Are `makefile.gcc`/`makefile.vc` tested anywhere? It seems that `makefile.vc` is used [by AppVeyor](https://github.com/wxWidgets/wxWidgets/blob/cfff7223ad9ec0d33c2c56b2f4ba1b94a326bec4/appveyor.yml#L42); however, `makefile.gcc` is not (although there is still a support for it in appveyor.bat).

On wxForum, I encountered SVGs that are rasterized incorrectly in 3.2 but correctly in the master, probably due to difference in bundled nanosvg library. Is there a reason why nanosvg...

Did you debug the issue, i.e., what was the dialog size in its dtor and what is the saved size (in `HKCU/Software///Persistent_Options/Window/` Registry key)? > Yes, it also happens at...

> When I checked the registry, I found that there is only one key in "HKCU/Software///Persistent_Options/Window/dialog" and this key store the value of both the dialogs (we have two dialogs...