You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
490 B
28 lines
490 B
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
|
|
import Eden.Items
|
|
import Eden.Config
|
|
import Eden.Constants
|
|
|
|
BaseField {
|
|
id: field
|
|
contentItem: SpinBox {
|
|
enabled: enable
|
|
|
|
Layout.fillWidth: true
|
|
Layout.rightMargin: 10
|
|
Layout.maximumHeight: 30
|
|
|
|
from: setting.min
|
|
to: setting.max
|
|
|
|
font.pixelSize: 14
|
|
|
|
value: field.value
|
|
|
|
// label: setting.suffix
|
|
onValueModified: field.value = value
|
|
}
|
|
}
|