mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 00:34:26 +08:00
28 lines
486 B
QML
28 lines
486 B
QML
// Copyright (c) 2024 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Window 2.2
|
|
|
|
import UM 1.5 as UM
|
|
import Cura 1.1 as Cura
|
|
|
|
RowLayout
|
|
{
|
|
id: settingSelection
|
|
|
|
UM.CheckBox
|
|
{
|
|
text: modelData.name
|
|
Layout.preferredWidth: UM.Theme.getSize("setting").width
|
|
checked: true
|
|
}
|
|
|
|
UM.Label
|
|
{
|
|
text: modelData.value
|
|
}
|
|
}
|