mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 04:54:04 -06:00
Small clean-up of log warnings
Contributes to CL-1165
This commit is contained in:
parent
3377ed0e6e
commit
8d76bd8678
3 changed files with 12 additions and 16 deletions
|
@ -27,7 +27,7 @@ Item
|
|||
ExpandableCard
|
||||
{
|
||||
enabled: printJob != null
|
||||
borderColor: printJob.configurationChanges.length !== 0 ? "#f5a623" : "#CCCCCC" // TODO: Theme!
|
||||
borderColor: printJob && printJob.configurationChanges.length !== 0 ? "#f5a623" : "#CCCCCC" // TODO: Theme!
|
||||
headerItem: Row
|
||||
{
|
||||
height: 48 * screenScaleFactor // TODO: Theme!
|
||||
|
@ -177,8 +177,7 @@ Item
|
|||
id: printerConfiguration
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
buildplate: "Glass"
|
||||
configurations:
|
||||
[
|
||||
configurations: !base.printJob ? [null, null] : [
|
||||
base.printJob.configuration.extruderConfigurations[0],
|
||||
base.printJob.configuration.extruderConfigurations[1]
|
||||
]
|
||||
|
@ -241,7 +240,7 @@ Item
|
|||
MonitorContextMenu
|
||||
{
|
||||
id: contextMenu
|
||||
printJob: printer ? printer.activePrintJob : null
|
||||
printJob: base.printJob ? base.printJob : null
|
||||
target: contextMenuButton
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue