Fix for world transformation of text

This commit is contained in:
Filip Sykala - NTB T15p 2023-01-17 12:27:50 +01:00
parent 50bb164263
commit c2765cbde8

View File

@ -403,7 +403,7 @@ Transform3d priv::world_matrix(const GLVolume *gl_volume, const Model *model)
if (!fix.has_value())
return res;
return res * (*fix);
return res * fix->inverse();
}
Transform3d priv::world_matrix(const Selection &selection)