diff --git a/bin/font-patcher b/bin/font-patcher index bb8a112..435c2ed 100755 --- a/bin/font-patcher +++ b/bin/font-patcher @@ -667,11 +667,11 @@ class font_patcher: ligature_subtables = json.loads(self.config.get("Subtables", "ligatures")) for subtable in ligature_subtables: print("Removing subtable:", subtable) - try: - self.sourceFont.removeLookupSubtable(subtable) - print("Successfully removed subtable:", subtable) - except Exception: - print("Failed to remove subtable:", subtable) + try: + self.sourceFont.removeLookupSubtable(subtable) + print("Successfully removed subtable:", subtable) + except Exception: + print("Failed to remove subtable:", subtable) elif self.args.removeligatures: print("Unable to read configfile, unable to remove ligatures") else: diff --git a/src/glyphs/README.md b/src/glyphs/README.md new file mode 100644 index 0000000..34801ba --- /dev/null +++ b/src/glyphs/README.md @@ -0,0 +1,8 @@ +### Contents + +This directory contains all the glyphs (glyph sets) that the `font-patcher` puts into the fonts. + +If a icon font here is updated, do not forget to update the database file in `bin/script/libs`. + +The 'Seti and Original' icons (in `original-source.otf`) is automatically generated from the glyphs in `src/svgs`. +Do not edit and commit changes to that font directly. diff --git a/src/glyphs/original-source.otf b/src/glyphs/original-source.otf index ea10f57..be42b88 100644 Binary files a/src/glyphs/original-source.otf and b/src/glyphs/original-source.otf differ