1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-15 03:27:35 +01:00
This commit is contained in:
Valentin Radu 2021-12-11 18:45:53 +02:00
parent ef7ee79169
commit 9d00181c4e
3 changed files with 12 additions and 4 deletions

View File

@ -28,6 +28,7 @@ Tested on build 22000.348.
* Reliability improvements for File Explorer restarts (#529) (.7)
* When changing the main taskbar position and restarting File Explorer, the new position is now correctly saved and applied when File Explorer restarts (#523) (.7)
* Mitigation for the issue described in #416 (.7)
* Fixed a bug that prevented the Windows 10 window switcher from displaying when it was enabled, instead falling back to the Windows NT window switcher (#548) (.8)
#### Simple Window Switcher

View File

@ -4985,7 +4985,14 @@ LSTATUS twinuipcshell_RegGetValueW(
{
if (lRes == ERROR_SUCCESS && *(DWORD*)pvData)
{
*(DWORD*)pvData = 1;
if (*(DWORD*)pvData == 3)
{
*(DWORD*)pvData = 0;
}
else
{
*(DWORD*)pvData = 1;
}
}
if (!bOldTaskbar && hWin11AltTabInitialized)

View File

@ -1,7 +1,7 @@
#define VER_MAJOR 22000
#define VER_MINOR 348
#define VER_BUILD_HI 40
#define VER_BUILD_LO 7
#define VER_BUILD_LO 8
#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.7"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.7"
#define VER_FILE_STRING VALUE "FileVersion", "22000.348.40.8"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.8"