1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-23 23:21:08 +01:00

Fixed bug that prevented proper loading of default settings in sws

This commit is contained in:
Valentin Radu 2021-12-06 04:49:23 +02:00
parent 3df305b2e1
commit 6f19d53ffd
4 changed files with 6 additions and 4 deletions

View File

@ -36,6 +36,7 @@ Tested on build 22000.348.
* Fixed some rendering problems when themes are disabled
* Fixed regression of [#161](https://github.com/valinet/ExplorerPatcher/issues/161#issuecomment-986234002) (.1)
* Possibility to disable per-application window lists (`Alt`+`) ([#283](https://github.com/valinet/ExplorerPatcher/issues/283#issuecomment-986261712)) (.2)
* Fixed bug that prevented proper loading of default settings (.3)
## 22000.348.39

View File

@ -3465,6 +3465,7 @@ DWORD WindowSwitcher(DWORD unused)
{
return 0;
}
sws_WindowSwitcher_InitializeDefaultSettings(sws);
sws_ReadSettings(sws);
err = sws_error_Report(sws_error_GetFromInternalError(sws_WindowSwitcher_Initialize(&sws, FALSE)), NULL);
if (err == SWS_ERROR_SUCCESS)

@ -1 +1 @@
Subproject commit b0d9d07916fce59f83689a7428463569606440ef
Subproject commit 5554617cb058e2c66fbdac898557697d61b7516c

View File

@ -1,7 +1,7 @@
#define VER_MAJOR 22000
#define VER_MINOR 348
#define VER_BUILD_HI 40
#define VER_BUILD_LO 2
#define VER_BUILD_LO 3
#define VER_FLAGS VS_FF_PRERELEASE
@ -12,5 +12,5 @@
#define VER_STR(arg) #arg
// The String form of the version numbers
#define VER_FILE_STRING VALUE "FileVersion", "22000.348.40.2"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.2"
#define VER_FILE_STRING VALUE "FileVersion", "22000.348.40.3"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.3"