Qt 6.11 is out! See what's new in the release
blog
How to change size (font) of numbers in a SpinBox (QtQuick.Controls 1.X)
-
Hello,
I use a
SpinBoxfromQtQuick.Controls 1.Xand I need to change the height of theSpinBox
However, it doesn't change thesizeof thenumbersin the SpinBox and I would like to adjust thesenumbersto thesizeof theSpinBoxExample :
SpinBox { height: 200 font : 50 //not working style: SpinBoxStyle{ font: 50 //Not working either } }How could I proceed ?