1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-27 17:00:59 +01:00

Taskbar10: Fix start menu position when the taskbar is at the left or right side on Moment 4 builds

This commit is contained in:
Amrsatrio 2023-10-16 23:26:04 +07:00
parent 7e2f76840a
commit a57471feb2

View File

@ -9693,6 +9693,15 @@ int RtlQueryFeatureConfigurationHook(UINT32 featureId, int sectionType, INT64* c
break;
}
#endif
case 44656322: // ID44656322
{
if (bOldTaskbar)
{
// Fixes start menu positioning when the taskbar is at the left or right side
buffer->enabledState = FEATURE_ENABLED_STATE_DISABLED;
}
break;
}
}
return rv;
}