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:
Nino van Hooff 2019-11-01 10:31:07 +01:00
parent 1c13402670
commit 90f580494b

View file

@ -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) }
} }