QML Clean-up

Contributes to CL-897, CL-1051, CL-1111
This commit is contained in:
Ian Paschal 2018-10-23 15:41:56 +02:00
parent 1bd488dd6c
commit f9545a339d
4 changed files with 8 additions and 8 deletions

View file

@ -39,16 +39,16 @@ Item {
}
color: {
if(configurationChangeToggle.containsMouse) {
return UM.Theme.getColor("viewport_background"); // TODO: Theme!
return UM.Theme.getColor("viewport_background");
} else {
return "transparent";
}
}
height: UM.Theme.getSize("default_margin").height * 4; // TODO: Theme!
height: UM.Theme.getSize("default_margin").height * 4;
width: parent.width;
Rectangle {
color: "#e6e6e6"; // TODO: Theme!
color: UM.Theme.getColor("monitor_lining_light");
height: UM.Theme.getSize("default_lining").height;
width: parent.width;
}