Skip to content

Commit cbb964f

Browse files
committed
chore: change opacity
Signed-off-by: Vitor Mattos <vitor@php.rio>
1 parent 10bddeb commit cbb964f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Service/SignatureBackgroundService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public function getImage(): ISimpleFile {
129129
try {
130130
$file = $this->getRootFolder()->getFile('background.png');
131131
} catch (NotFoundException $e) {
132-
$content = $this->optmizeImage(file_get_contents(__DIR__ . '/../../img/logo-gray.svg'), 0.3);
132+
$content = $this->optmizeImage(file_get_contents(__DIR__ . '/../../img/logo-gray.svg'), 0.15);
133133
$file = new InMemoryFile('background.png', $content);
134134
}
135135
return $file;

src/views/Settings/CollectMetadata.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default {
4646
OCP.AppConfig.setValue('libresign', 'collect_metadata', this.collectMetadataEnabled ? 1 : 0, {
4747
success: () => {
4848
emit('collect-metadata:changed')
49-
}
49+
},
5050
})
5151
},
5252
},

0 commit comments

Comments
 (0)