From 403bd54b96fa9abb1cb0c9aa6ffba5e31c8649fc Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Tue, 27 Jul 2021 21:00:51 +0200 Subject: [PATCH] Move svg.ts into the gitignore --- .gitignore | 1 + Svg.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 626653015..5d39c4885 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ Docs/Tools/stats.csv missing_translations.txt *.swp .DS_Store +Svg.ts \ No newline at end of file diff --git a/Svg.ts b/Svg.ts index 62b4cdf7b..881ade40f 100644 --- a/Svg.ts +++ b/Svg.ts @@ -229,7 +229,7 @@ export default class Svg { public static length_crosshair_svg() { return new Img(Svg.length_crosshair, true);} public static length_crosshair_ui() { return new FixedUiElement(Svg.length_crosshair_img);} - public static location_circle = "" + public static location_circle = " image/svg+xml " public static location_circle_img = Img.AsImageElement(Svg.location_circle) public static location_circle_svg() { return new Img(Svg.location_circle, true);} public static location_circle_ui() { return new FixedUiElement(Svg.location_circle_img);}