mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 10:12:52 +02:00
15 lines
289 B
QML
15 lines
289 B
QML
|
|
import QtQuick.Controls 1.3 as Original
|
|
import QtQuick.Controls.Styles 1.3
|
|
|
|
import "../styles"
|
|
import "."
|
|
|
|
Original.SpinBox {
|
|
style: SpinBoxStyle {
|
|
HifiConstants { id: hifi }
|
|
font.family: hifi.fonts.fontFamily
|
|
font.pixelSize: hifi.fonts.pixelSize
|
|
}
|
|
|
|
}
|