diff options
author | Aaron Williamson <guitarfanman@gmail.com> | 2017-04-22 14:01:25 -0600 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-05-01 08:52:22 -0700 |
commit | 1277e07671a15b87832af90c7244a0cac480b829 (patch) | |
tree | 0fa3a16741612d745dd7ce414cf3b4ecab2e66f0 /font/src/ft | |
parent | 7fc50f669056dc9a3a601b3f0248926384abb570 (diff) | |
download | alacritty-1277e07671a15b87832af90c7244a0cac480b829.tar.gz alacritty-1277e07671a15b87832af90c7244a0cac480b829.zip |
Remove unnecessary size argument to metrics function
The changes to metric consumption rendered the size argument
unnecessary, remove it.
Diffstat (limited to 'font/src/ft')
-rw-r--r-- | font/src/ft/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/ft/mod.rs b/font/src/ft/mod.rs index 24ef5c77..c04057cd 100644 --- a/font/src/ft/mod.rs +++ b/font/src/ft/mod.rs @@ -54,7 +54,7 @@ impl ::Rasterize for FreeTypeRasterizer { }) } - fn metrics(&self, key: FontKey, size: Size) -> Result<Metrics, Error> { + fn metrics(&self, key: FontKey) -> Result<Metrics, Error> { let face = self.faces .get(&key) .ok_or(Error::FontNotLoaded)?; |