diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/main.rs b/src/main.rs index 733c4c6d..79c368df 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,6 +12,7 @@ extern crate glutin; extern crate cgmath; extern crate euclid; extern crate notify; +extern crate arrayvec; #[macro_use] mod macros; @@ -190,15 +191,6 @@ fn main() { width: width as f32, }; - let props = TermProps { - cell_width: cell_width as f32, - cell_height: cell_height as f32, - sep_x: sep_x as f32, - sep_y: sep_y as f32, - height: height as f32, - width: width as f32, - }; - { let _sampler = meter.sampler(); |