Browse Source

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

pull/2331/head 22621.2361.58.4_a57471f
Amrsatrio 2 years ago
parent
commit
a57471feb2
  1. 9
      ExplorerPatcher/dllmain.c

9
ExplorerPatcher/dllmain.c

@ -9693,6 +9693,15 @@ int RtlQueryFeatureConfigurationHook(UINT32 featureId, int sectionType, INT64* c @@ -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;
}

Loading…
Cancel
Save