Sundry linting/debug removal

This commit is contained in:
Richard 2021-05-29 13:06:52 +01:00
parent 6a353ccbd3
commit 55a9f49fd2
3 changed files with 19 additions and 19 deletions

View file

@ -290,8 +290,8 @@ export default {
framerate: parseInt(this.picamera.framerate), framerate: parseInt(this.picamera.framerate),
awb_gains: [ awb_gains: [
parseFloat(this.picamera.awb_gains[0]), parseFloat(this.picamera.awb_gains[0]),
parseFloat(this.picamera.awb_gains[1]), parseFloat(this.picamera.awb_gains[1])
], ]
} }
} }
}; };

View file

@ -15,7 +15,10 @@
> >
</taskSubmitter> </taskSubmitter>
</div> </div>
<div v-if="'auto_exposure_from_raw' in recalibrationLinks" class="uk-margin-small"> <div
v-if="'auto_exposure_from_raw' in recalibrationLinks"
class="uk-margin-small"
>
<taskSubmitter <taskSubmitter
:can-terminate="false" :can-terminate="false"
:requires-confirmation="false" :requires-confirmation="false"
@ -26,7 +29,10 @@
> >
</taskSubmitter> </taskSubmitter>
</div> </div>
<div v-if="'auto_white_balance_from_raw' in recalibrationLinks" class="uk-margin-small"> <div
v-if="'auto_white_balance_from_raw' in recalibrationLinks"
class="uk-margin-small"
>
<taskSubmitter <taskSubmitter
:can-terminate="false" :can-terminate="false"
:requires-confirmation="false" :requires-confirmation="false"
@ -37,7 +43,10 @@
> >
</taskSubmitter> </taskSubmitter>
</div> </div>
<div v-if="'auto_lens_shading_table' in recalibrationLinks" class="uk-margin-small"> <div
v-if="'auto_lens_shading_table' in recalibrationLinks"
class="uk-margin-small"
>
<taskSubmitter <taskSubmitter
:can-terminate="false" :can-terminate="false"
:requires-confirmation="true" :requires-confirmation="true"

View file

@ -95,21 +95,12 @@ export default {
// Cache the stream settings to local storage for persistence // Cache the stream settings to local storage for persistence
// (the next 3 functions all relate to this) // (the next 3 functions all relate to this)
disableStream: function(newValue) { disableStream: function(newValue) {
console.log(
`disableStream updated to ${newValue} and saved in local storage`
);
this.setLocalStorageObj("disableStream", newValue); this.setLocalStorageObj("disableStream", newValue);
}, },
autoGpuPreview: function(newValue) { autoGpuPreview: function(newValue) {
console.log(
`GPU preview updated to ${newValue} and saved in local storage`
);
this.setLocalStorageObj("autoGpuPreview", newValue); this.setLocalStorageObj("autoGpuPreview", newValue);
}, },
trackWindow: function(newValue) { trackWindow: function(newValue) {
console.log(
`trackWindow updated to ${newValue} and saved in local storage`
);
this.setLocalStorageObj("trackWindow", newValue); this.setLocalStorageObj("trackWindow", newValue);
} }
}, },