Text zoom out problem

Hi
when zooming out an icon with text on it, at certain zoom, the text becomes a black line.
This happens even if there is no text.
When zooming out some more the text disapears.
can you make the text disapear instead of becoming a black line?
see example from your sample application FlowCharter

From the API documentation for GoText.PaintGreek



This paints nothing if the view’s

GoView.DocScale is less than the

GoView.PaintNothingScale.



It just draws a line if the scale is less than the

GoView.PaintGreekScale.



defaults for those:



PaintNothingScale = 0.13f;

PaintGreekScale = 0.24f;

I think this helps.
Thanks.