mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
don't use single char variable
This commit is contained in:
parent
a782d4bc19
commit
ebfcd364cd
1 changed files with 4 additions and 4 deletions
|
|
@ -562,11 +562,11 @@ class HSLInputs(QtWidgets.QWidget):
|
|||
return
|
||||
|
||||
self._block_changes = True
|
||||
h, s, l, _ = self.color.getHsl()
|
||||
hue, sat, lum, _ = self.color.getHsl()
|
||||
|
||||
self.input_hue.setValue(h)
|
||||
self.input_sat.setValue(s)
|
||||
self.input_light.setValue(l)
|
||||
self.input_hue.setValue(hue)
|
||||
self.input_sat.setValue(sat)
|
||||
self.input_light.setValue(lum)
|
||||
|
||||
self._block_changes = False
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue