OK. I have some fix now, but not sure this is the right fix.

The problem is that during the printing (and exporting to PDF), the class RS_StaticGraphicView ignores the existing of the fields "unitFactor" and "unitFactor100" and never initialize them.
My fix is simply to set them to 1.0 and 0.01 in the constructor, but I am not very sure this is the right approach. (QG_GraphicView has more complex way for initializing these fields).
Index: librecad/src/lib/gui/rs_staticgraphicview.cpp
==================================================================
--- librecad/src/lib/gui/rs_staticgraphicview.cpp
+++ librecad/src/lib/gui/rs_staticgraphicview.cpp
@@ -44,10 +44,12 @@
{
setBackground({255,255,255});
QSize b{5, 5};
if (pb) b = *pb;
setBorders(b.width(), b.height(), b.width(), b.height());
+ unitFactor = 1.0;
+ unitFactor100 = 0.01;
}
/**
* @return width of widget.
*/
Nevertheless, this gives the right result in the PDF files. And during my research I have never see these fields with different values. Maybe with inch dimensions they are different, but well, I am not using inches.
Comments and directions are welcome. :)