mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Change default image reader algorithm from logarithmic to linear
The log curve might have some benefits but is also harder to understand and configure, so let's keep the default at linear. CURA-6540
This commit is contained in:
parent
1c13402670
commit
90f580494b
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ UM.Dialog
|
||||||
ComboBox {
|
ComboBox {
|
||||||
id: color_model
|
id: color_model
|
||||||
objectName: "ColorModel"
|
objectName: "ColorModel"
|
||||||
model: [ catalog.i18nc("@item:inlistbox","Translucency"), catalog.i18nc("@item:inlistbox","Linear") ]
|
model: [ catalog.i18nc("@item:inlistbox","Linear"), catalog.i18nc("@item:inlistbox","Translucency") ]
|
||||||
width: 180 * screenScaleFactor
|
width: 180 * screenScaleFactor
|
||||||
onCurrentIndexChanged: { manager.onColorModelChanged(currentIndex) }
|
onCurrentIndexChanged: { manager.onColorModelChanged(currentIndex) }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue