mirror of https://github.com/zulip/zulip.git
emoji: Fix graphical artifacts of adjacent emoji in sprite sheet.
We didn't have any margin between the different emoji symbols previously.
This commit is contained in:
parent
652ae2639e
commit
0a6d960f37
|
@ -198,7 +198,7 @@ def dump_emojis(cache_path):
|
|||
print("Errors dumping emoji!")
|
||||
sys.exit(1)
|
||||
|
||||
subprocess.call('glue --quiet out/sprite . --namespace=emoji --sprite-namespace= --retina',
|
||||
subprocess.call('glue --quiet out/sprite . --margin=1 --namespace=emoji --sprite-namespace= --retina',
|
||||
shell=True)
|
||||
|
||||
cache_emoji = os.path.join(cache_path, 'images', 'emoji')
|
||||
|
|
Loading…
Reference in New Issue