diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-07-30 22:13:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 22:13:51 +0000 |
commit | 86b9cdbabe495effed3559d2561f65efab9becaa (patch) | |
tree | 83577b53d79de856697d116d9a4062025f27b561 /font | |
parent | 72dfa477a9785289931e8e05dfc8244bb6a4e81c (diff) | |
download | alacritty-86b9cdbabe495effed3559d2561f65efab9becaa.tar.gz alacritty-86b9cdbabe495effed3559d2561f65efab9becaa.zip |
Bump minimum supported Rust version to 1.34.0
Diffstat (limited to 'font')
-rw-r--r-- | font/src/directwrite/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/directwrite/mod.rs b/font/src/directwrite/mod.rs index 32b3570d..579f7faa 100644 --- a/font/src/directwrite/mod.rs +++ b/font/src/directwrite/mod.rs @@ -146,7 +146,7 @@ impl crate::Rasterize for DirectWriteRasterizer { let rendering_mode = font.get_recommended_rendering_mode_default_params( glyph.size.as_f32_pts(), self.device_pixel_ratio * (96.0 / 72.0), - dwrote::DWRITE_MEASURING_MODE_NATURAL + dwrote::DWRITE_MEASURING_MODE_NATURAL, ); let glyph_analysis = GlyphRunAnalysis::create( |