Merge pull request #5110 from RaiKoHoff/Dev_Master

Explicit update toolbar and titlebar on drag n drop file
This commit is contained in:
Pairi Daiza 2024-02-24 12:53:51 +01:00 committed by GitHub
commit f53d43fe66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -3741,6 +3741,7 @@ LRESULT MsgDropFiles(HWND hwnd, WPARAM wParam, LPARAM lParam)
DragFinish(hDrop);
Path_Release(hdrop_pth);
UpdateToolbar(hwnd);
}
return 0;
}

View File

@ -238,7 +238,9 @@ inline LPCWSTR _Win10BuildToReleaseId(const DWORD build)
#define VER_CPL MS Visual C++ 2022 v17.0.(0-1)
#endif
#elif (_MSC_VER == 1929)
#if (_MSC_FULL_VER >= 192930153)
#if (_MSC_FULL_VER >= 192930154)
#define VER_CPL MS Visual C++ 2019 v16.11.34
#elif (_MSC_FULL_VER >= 192930153)
#define VER_CPL MS Visual C++ 2019 v16.11.33
#elif (_MSC_FULL_VER >= 192930152)
#define VER_CPL MS Visual C++ 2019 v16.11.(30-32)