1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

LibWeb: Don't round font sizes when looking them up

We previously had a rounding error which sometimes led to asking LibGfx
for fonts with slightly wrong sizes.
This commit is contained in:
Andreas Kling 2022-03-26 23:55:11 +01:00
parent ee883372f6
commit d5bba91a16
2 changed files with 4 additions and 4 deletions

View file

@ -14,20 +14,20 @@
struct FontSelector {
FlyString family;
int size { 0 };
float point_size { 0 };
int weight { 0 };
int slope { 0 };
bool operator==(const FontSelector& other) const
{
return family == other.family && size == other.size && weight == other.weight && slope == other.slope;
return family == other.family && point_size == other.point_size && weight == other.weight && slope == other.slope;
}
};
namespace AK {
template<>
struct Traits<FontSelector> : public GenericTraits<FontSelector> {
static unsigned hash(const FontSelector& key) { return pair_int_hash(pair_int_hash(key.family.hash(), key.weight), key.size); }
static unsigned hash(const FontSelector& key) { return pair_int_hash(pair_int_hash(key.family.hash(), key.weight), key.point_size); }
};
}