juce::Label Editor Alignment

Hi,

One thing that I am constantly doing with a juce label, when it is editable, is having the text alignment of the editor match the set alignment of the label. It would be nice (and super simple) for the text editor to follow the alignment of the label. Here is what I have to do now, say I have a label which is aligned center myLabel.setJustification(juce::JustificationType::centered), I then need to do this every time:

myLabel.onEditorShow = [this] {
if (auto e = myLabel.getCurrentTextEditor()) 
    e->setJustification(myLabel.getJustificationType());
};