mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
make naming of Logarithmic Conversion Function intelligible
This commit is contained in:
parent
beaa5e0b7a
commit
5b9a18f5df
3 changed files with 13 additions and 13 deletions
|
@ -34,7 +34,7 @@ class ImageReaderUI(QObject):
|
|||
self.peak_height = 2.5
|
||||
self.smoothing = 1
|
||||
self.lighter_is_higher = False;
|
||||
self.use_logarithmic_function = False;
|
||||
self.use_transparency_model = True;
|
||||
self.transmittance_1mm = 40.0;
|
||||
|
||||
self._ui_lock = threading.Lock()
|
||||
|
@ -149,8 +149,8 @@ class ImageReaderUI(QObject):
|
|||
self.lighter_is_higher = (value == 1)
|
||||
|
||||
@pyqtSlot(int)
|
||||
def onConvertFunctionChanged(self, value):
|
||||
self.use_logarithmic_function = (value == 0)
|
||||
def onColorModelChanged(self, value):
|
||||
self.use_transparency_model = (value == 0)
|
||||
|
||||
@pyqtSlot(int)
|
||||
def onTransmittanceChanged(self, value):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue