Rename Theme to Styles to allow for the introduction of a proper Theme object

This commit is contained in:
Arjen Hiemstra 2015-03-25 13:36:40 +01:00
parent 4a8f6beb26
commit 89a035bab4
6 changed files with 35 additions and 33 deletions

View file

@ -26,7 +26,7 @@ Rectangle {
ColumnLayout {
anchors.fill: parent;
anchors.margins: UM.Theme.defaultMargin;
anchors.margins: UM.Styles.defaultMargin;
//: Open file button
Button { text: qsTr("Open File"); iconSource: UM.Resources.getIcon("open.png"); Layout.fillWidth: true; onClicked: base.requestOpenFile(); }
@ -70,7 +70,7 @@ Rectangle {
Label {
anchors.verticalCenter: parent.verticalCenter;
anchors.left: parent.left;
anchors.leftMargin: UM.Theme.defaultMargin;
anchors.leftMargin: UM.Styles.defaultMargin;
text: model.name;
}