Login  Register

Re: Dimensions

Posted by sand1024 on Dec 04, 2024; 5:55pm
URL: https://forum.librecad.org/Dimensions-tp5725567p5725753.html

well, at the moment there is no setting that controls this.

However the code is quite straightforward - you can check  RS_Text::draw function (and same for RS_MText).

There is the following logic that performs drawing of simplified text:

  if (!view->isPrintPreview() && !view->isPrinting()){
        if (view->isPanning() || view->toGuiDY(getHeight()) < view->getMinRenderableTextHeightInPx()){
            drawDraft(painter, view, patternOffset);
            return;
        }
    }
......

As you can see, simplified text is drawn if

1) the height of the text is smaller than specified height of text in pixels (defined in Application Preferences)
or
2) if view is panning.