mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2024-11-15 03:27:35 +01:00
Fixed #548
This commit is contained in:
parent
ef7ee79169
commit
9d00181c4e
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user