Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googlefonts/nanoemoji
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6e626474c0b8b4a6e00c4c49b78baab710692c67
Choose a base ref
..
head repository: googlefonts/nanoemoji
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f7330c1fa787e0ba25e81303072418e06ac8d201
Choose a head ref
Showing with 95 additions and 194 deletions.
  1. +1 −5 src/nanoemoji/maximum_color.py
  2. +94 −189 src/nanoemoji/write_font.py
6 changes: 1 addition & 5 deletions src/nanoemoji/maximum_color.py
Original file line number Diff line number Diff line change
@@ -89,11 +89,7 @@ def color_format(self) -> str:
@classmethod
def for_tag(cls, table_tag: str) -> "WriteFontInputs":
basename = table_tag.strip()
return cls(
Path(basename + ".glyphmap"),
Path(basename + ".toml"),
master_part_file_dest(),
)
return cls(Path(basename + ".glyphmap"), Path(basename + ".toml"))


def _vector_color_table(font: ttLib.TTFont) -> str:
Loading