Cura/plugins/PerObjectSettingsTool/PerObjectItem.qml
Jaime van Kessel c914446060 Initial changes for perobject stuff
CURA-1278
2016-05-27 11:26:41 +02:00

30 lines
558 B
QML

// Copyright (c) 2015 Ultimaker B.V.
// Uranium is released under the terms of the AGPLv3 or higher.
import QtQuick 2.1
import QtQuick.Layouts 1.1
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
import UM 1.2 as UM
UM.TooltipArea
{
x: model.depth * UM.Theme.getSize("default_margin").width;
text: model.description;
width: childrenRect.width;
height: childrenRect.height;
CheckBox
{
id: check
text: definition.label
onClicked: addedSettingsModel.setVisible(model.key, checked);
}
}