From 11690f07c821451f27f9cc7f88b7dce9721028ce Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 25 Jan 2023 09:05:18 +0100 Subject: [PATCH] Support dark/bright settings icon Signed-off-by: Joas Schilling --- img/settings-dark.svg | 4 ++++ lib/Migration/CopyDefaultIcons.php | 1 + 2 files changed, 5 insertions(+) create mode 100644 img/settings-dark.svg diff --git a/img/settings-dark.svg b/img/settings-dark.svg new file mode 100644 index 00000000..b9996e13 --- /dev/null +++ b/img/settings-dark.svg @@ -0,0 +1,4 @@ + + + + diff --git a/lib/Migration/CopyDefaultIcons.php b/lib/Migration/CopyDefaultIcons.php index 7ee624c2..198b4c87 100644 --- a/lib/Migration/CopyDefaultIcons.php +++ b/lib/Migration/CopyDefaultIcons.php @@ -59,6 +59,7 @@ public function run(IOutput $output): void { $this->copyDefaultIcon($output, $folder, 'external.svg'); $this->copyDefaultIcon($output, $folder, 'external-dark.svg'); $this->copyDefaultIcon($output, $folder, 'settings.svg'); + $this->copyDefaultIcon($output, $folder, 'settings-dark.svg'); } protected function copyDefaultIcon(IOutput $output, ISimpleFolder $folder, string $file): void {