Add missing field to impl Hash for RenderGlyphParams
(#20316)
Unlikely to cause any behavior change but seems more correct to include `is_emoji` in the hash. Release Notes: - N/A
This commit is contained in:
parent
daa35e98f1
commit
e85ab077be
1 changed files with 1 additions and 0 deletions
|
@ -668,6 +668,7 @@ impl Hash for RenderGlyphParams {
|
|||
self.font_size.0.to_bits().hash(state);
|
||||
self.subpixel_variant.hash(state);
|
||||
self.scale_factor.to_bits().hash(state);
|
||||
self.is_emoji.hash(state);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue