TableListBox not calling paintRowBackground when updating content

Hi All,

I have a TableListBox which uses the paintRowBackground() method to highlight selected rows.

When calling updateContent() on my TableListBox, the paintRowBackground() method used to get called on every visible row. However, this is no longer being called. Is this a potential JUCE bug?

I have used repaint() directly after calling updateContent() as a workaround for now but I think that this should probably happen automatically!?

Here is my current workaround:

m_tableListBox.updateContent();

// Call repaint on the TableListBox so that row backgrounds are updated
m_tableListBox.repaint();

Cheers,

Chris