Feature Manager Display Configuration

Hi everybody!
After upgrade to 2025 SP0 the macro started working with errors:

public void ShowDescriptionTree()
{
ModelDoc2 swModel;
FeatureManager swFeatMgr;

swModel = (ModelDoc2)BaseObject.ActiveDoc;
swFeatMgr = (FeatureManager)swModel.FeatureManager;

if (!swFeatMgr.ShowComponentNames)
    swFeatMgr.ShowComponentNames = true;

if (!swFeatMgr.ShowComponentDescriptions)
    swFeatMgr.ShowComponentDescriptions = true;

if (swFeatMgr.ShowComponentConfigurationNames)
    swFeatMgr.ShowComponentConfigurationNames = false;

swFeatMgr.ShowComponentConfigurationDescriptions = false;

swFeatMgr.ShowDisplayStateNames = false;
swFeatMgr.ShowFeatureDescription = true;
swFeatMgr.ShowFeatureName = true;

swFeatMgr.HideComponentSingleConfigurationOrDisplayStateNames = true;

}

Here is the result:

Снимок экрана 2025-01-17 095519

But I need it to be like this:
Снимок экрана 2025-01-17 100042

Has anyone come across this?

I wish I had SW 25 to confirm but I will post this on LinkedIn to confirm!