summaryrefslogtreecommitdiff
path: root/src/font/Collection.zig
diff options
context:
space:
mode:
authorQwerasd <qwerasd205@users.noreply.github.com>2025-01-06 17:39:53 -0500
committerQwerasd <qwerasd205@users.noreply.github.com>2025-01-06 20:13:45 -0500
commit540fcc0b690901f185ca00465dafed2e9423b479 (patch)
tree4913bc936fd441de2c8dab454addcc22ee39d3ef /src/font/Collection.zig
parent037de64ea2c3f6201948236559524986f41a72f7 (diff)
refactor(font): move `Metrics` out of `face`
in preparation to move ownership of metrics from faces to collections
Diffstat (limited to 'src/font/Collection.zig')
-rw-r--r--src/font/Collection.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/font/Collection.zig b/src/font/Collection.zig
index f79c80936..629f4e595 100644
--- a/src/font/Collection.zig
+++ b/src/font/Collection.zig
@@ -25,7 +25,7 @@ const DeferredFace = font.DeferredFace;
const DesiredSize = font.face.DesiredSize;
const Face = font.Face;
const Library = font.Library;
-const Metrics = font.face.Metrics;
+const Metrics = font.Metrics;
const Presentation = font.Presentation;
const Style = font.Style;