From 8a0b1d9c3f5a9ddb98469a340bbcd06374d4a24e Mon Sep 17 00:00:00 2001 From: Dan Aloni Date: Sat, 14 Oct 2017 20:35:56 +0300 Subject: Implement user actions for font resize (#625) Adds support for font resizing at run-time. Three new actions are introduced: * IncreaseFontSize - Increases current font size by 1.0 * DecreaseFontSize - Decreases current font size by 1.0 * ResetFontSize - Resets font size to that specified in the configuration. The stock config files have example configuration for each which should match gnome-terminal. For convenience, the config entries are: - { key: Key0, mods: Control, action: ResetFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize } - { key: Subtract, mods: Control, action: DecreaseFontSize } --- src/renderer/mod.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/renderer') diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs index 9ce690ca..9e6036d4 100644 --- a/src/renderer/mod.rs +++ b/src/renderer/mod.rs @@ -29,7 +29,7 @@ use gl; use index::{Line, Column, RangeInclusive}; use notify::{Watcher, watcher, RecursiveMode, DebouncedEvent}; -use config::{self, Config, Delta}; +use config::{self, Config, Font, Delta}; use term::{self, cell, RenderableCell}; use window::{Size, Pixels}; @@ -170,12 +170,11 @@ pub struct GlyphCache { impl GlyphCache { pub fn new( mut rasterizer: Rasterizer, - config: &Config, + font: &Font, loader: &mut L ) -> Result where L: LoadGlyph { - let font = config.font(); let size = font.size(); let glyph_offset = *font.glyph_offset(); -- cgit v1.2.3-54-g00ecf