How to change size (font) of numbers in a SpinBox (QtQuick.Controls 1.X)
Solved
QML and Qt Quick
-
Hello,
I use a
SpinBox
fromQtQuick.Controls 1.X
and I need to change the height of theSpinBox
However, it doesn't change thesize
of thenumbers
in the SpinBox and I would like to adjust thesenumbers
to thesize
of theSpinBox
Example :
SpinBox { height: 200 font : 50 //not working style: SpinBoxStyle{ font: 50 //Not working either } }
How could I proceed ?