Merge pull request #5758 from RosettaCommons/roccomoretti/interactive_fix_three_dots
[Foldit] Fix Title resize issue.
I was trying to be too clever by only recalculating the title size when needed. This was a premature optimization,
as the calculations are actually not that computationally demanding, especially when we consider everything else
which goes on in an update().
This resulted in a bug where the title would be set a zero width and then never resized for the actual width.
Recalculating the size at every update() seems to fix the problem.
RELEASE NOTES:
* Fixed bug where the title wasn't resizing properly (leaving it and the objective panel as only three dots).