Skip to content

Commit

Permalink
Fix icon import script
Browse files Browse the repository at this point in the history
  • Loading branch information
pattlebass committed Feb 19, 2023
1 parent 8568196 commit f5e49ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/themes/dark/import_icons.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python -u "d:\Projects\Music-DJ\assets\themes\svg_import.py" --fill "#FFFFFF"
python -u "..\svg_import.py" --fill "#FFFFFF"
2 changes: 1 addition & 1 deletion assets/themes/svg_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
svg["viewBox"] = "0 0 24 24"
print(path + ": added viewbox")

if svg["height"] != "36" or svg["height"] != "36":
if svg["height"] != "36" or svg["width"] != "36":
svg["height"] = "36"
svg["width"] = "36"
print(path + ": set dimentions")
Expand Down
2 changes: 1 addition & 1 deletion assets/themes/white/import_icons.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python -u "d:\Projects\Music-DJ\assets\themes\svg_import.py" --fill "#000000DE"
python -u "..\svg_import.py" --fill "#000000DE"

0 comments on commit f5e49ef

Please sign in to comment.