Draw Capsule Collider

Is there a simple way to render the wireframe of a character’s capsule component in game?

In the rendering section of a capsule component, there is Hidden In Game activated by default. You can simply uncheck that to see the capsule in-game.

In 4.12 version, I cannot find where this HiddenInGame option is under capsulecomponent-rendering

I have also tried it in code but nothing changes

this->GetCapsuleComponent()->SetVisibility(true);
this->GetCapsuleComponent()->SetHiddenInGame(false);

How can I do this in this version ?

Edit: I had to restart the editor for it to work