Do any know how to remove the margin inside labels?

There’s some space between the start of the label box and the text inside, I can’t find an option to remove that annoying margin, any pointer is welcome !

You can use Label::setBorderSize():

// Removes the border from all sides
label.setBorderSize (juce::BorderSize<int> (0));
1 Like

Perfect, thanks a lot !! I would have never figured it out…