From 64084e0f99f1ee73e216c8ba76da34968e06c912 Mon Sep 17 00:00:00 2001 From: Peng Lyu Date: Thu, 17 May 2018 11:55:03 -0700 Subject: [PATCH] description svg --- extensions/git-extended/resources/icons/book.svg | 1 - extensions/git-extended/resources/icons/dark/book.svg | 1 + extensions/git-extended/resources/icons/light/book.svg | 1 + extensions/git-extended/src/common/resources.ts | 4 ++-- 4 files changed, 4 insertions(+), 3 deletions(-) delete mode 100644 extensions/git-extended/resources/icons/book.svg create mode 100644 extensions/git-extended/resources/icons/dark/book.svg create mode 100644 extensions/git-extended/resources/icons/light/book.svg diff --git a/extensions/git-extended/resources/icons/book.svg b/extensions/git-extended/resources/icons/book.svg deleted file mode 100644 index da8533922b2..00000000000 --- a/extensions/git-extended/resources/icons/book.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/extensions/git-extended/resources/icons/dark/book.svg b/extensions/git-extended/resources/icons/dark/book.svg new file mode 100644 index 00000000000..6bf1ece25d5 --- /dev/null +++ b/extensions/git-extended/resources/icons/dark/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extensions/git-extended/resources/icons/light/book.svg b/extensions/git-extended/resources/icons/light/book.svg new file mode 100644 index 00000000000..6055db8abdd --- /dev/null +++ b/extensions/git-extended/resources/icons/light/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/extensions/git-extended/src/common/resources.ts b/extensions/git-extended/src/common/resources.ts index f8b9f96ed4e..f1ec2e8d6b7 100644 --- a/extensions/git-extended/src/common/resources.ts +++ b/extensions/git-extended/src/common/resources.ts @@ -25,7 +25,7 @@ export class Resource { Conflict: context.asAbsolutePath(path.join('resources', 'icons', 'light', 'status-conflict.svg')), Comment: context.asAbsolutePath(path.join('resources', 'icons', 'comment.svg')), Fold: context.asAbsolutePath(path.join('resources', 'icons', 'light', 'fold.svg')), - Description: context.asAbsolutePath(path.join('resources', 'icons', 'book.svg')) + Description: context.asAbsolutePath(path.join('resources', 'icons', 'light', 'book.svg')) }, dark: { Modified: context.asAbsolutePath(path.join('resources', 'icons', 'dark', 'status-modified.svg')), @@ -38,7 +38,7 @@ export class Resource { Conflict: context.asAbsolutePath(path.join('resources', 'icons', 'dark', 'status-conflict.svg')), Comment: context.asAbsolutePath(path.join('resources', 'icons', 'comment.svg')), Fold: context.asAbsolutePath(path.join('resources', 'icons', 'dark', 'fold.svg')), - Description: context.asAbsolutePath(path.join('resources', 'icons', 'book.svg')) + Description: context.asAbsolutePath(path.join('resources', 'icons', 'dark', 'book.svg')) } }; } -- GitLab