blob: 408db31fccf99435668d9d55a16cb8795440dda6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls
SpinBox {
textFromValue: function (value) {
return value + " °C"
}
}
|