Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Grow Qml Text uniformly from the center when animating font.pixelSize
-
Hi, when I animate the
font.pixelSize
property of a Qml Text object, it grows from the upper left corner to the lower right. But I want it to grow uniformly from the center in all directions. Is there a setting to do this without changing x and y position of the text?Thx
Andi
-
@Andreas-Schacherbauer
don't use x or y for positioning, useanchors.centerIn: parent
, that should do the trick