diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-18 18:08:25 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-18 18:08:25 +0100 |
| commit | 274cc15ec0a5cc392bbddd604602e32e98e36578 (patch) | |
| tree | 37adb2459653e6ca05128a1c9349036ab022e9a8 | |
| parent | 263048adf84b44594eebcb94411b74273a20cb08 (diff) | |
fix zoom/lum sliders
| -rw-r--r-- | app/client/modules/biggan/views/biggan.live.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/client/modules/biggan/views/biggan.live.js b/app/client/modules/biggan/views/biggan.live.js index 6d9c30b..f67d1bf 100644 --- a/app/client/modules/biggan/views/biggan.live.js +++ b/app/client/modules/biggan/views/biggan.live.js @@ -129,7 +129,7 @@ class BigGANLive extends Component { <Slider live name='zoom' title={"Zoom"} - min={-4.0} max={4.0} type='float' + min={4.0} max={-4.0} type='float' /> <Slider live name='shiftx' @@ -144,7 +144,7 @@ class BigGANLive extends Component { <Slider live name='luminance' title={"Brightness"} - min={-2.0} max={2} type='float' + min={-2.0} max={2.0} type='float' /> </Group> </div> |
