When creating labels using the GUI Editor in Juce 6, the editor is generating the following code:
label1->setColour (TextEditor::textColourId, juce::Colours::black);
label1->setColour (TextEditor::backgroundColourId, juce::Colour (0x00000000));
This code does not compile since TextEditor:: is missing the juce:: namespace. The code generator should be updated.

