summaryrefslogtreecommitdiffstats
path: root/src/renderer/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer/mod.rs')
-rw-r--r--src/renderer/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs
index 2ec196f9..48354018 100644
--- a/src/renderer/mod.rs
+++ b/src/renderer/mod.rs
@@ -28,7 +28,7 @@ use gl;
use index::{Line, Column, RangeInclusive};
use notify::{Watcher as WatcherApi, RecommendedWatcher as Watcher, op};
-use config::{Config, GlyphOffset};
+use config::{Config, Delta};
use term::{self, cell, RenderableCell};
use window::{Size, Pixels};
@@ -156,7 +156,7 @@ pub struct GlyphCache {
font_size: font::Size,
/// glyph offset
- glyph_offset: GlyphOffset,
+ glyph_offset: Delta,
}
impl GlyphCache {