From b942de65e11a526bdc535a922abfc151e2b068dc Mon Sep 17 00:00:00 2001 From: Akshay Date: Wed, 1 Jul 2020 11:54:18 +0530 Subject: new name, add spacing for command line --- Cargo.toml | 4 ++-- src/app.rs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8485688..3fea17f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "track" +name = "dijo" version = "0.1.0" -authors = ["Akshay "] +authors = ["Akshay "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/app.rs b/src/app.rs index 5b1fa9d..57c489f 100644 --- a/src/app.rs +++ b/src/app.rs @@ -116,7 +116,7 @@ impl App { 0 } }; - Vec2::new(width, height) + Vec2::new(width, height + 2) } pub fn load_state() -> Self { @@ -164,7 +164,7 @@ impl View for App { i.draw(&printer.offset(offset).focused(self.focus == idx)); offset = offset.map_x(|x| x + CONFIGURATION.view_width); } - offset = offset.map_x(|_| 0).map_y(|_| self.max_size().y - 1); + offset = offset.map_x(|_| 0).map_y(|_| self.max_size().y - 3); printer.print(offset, &self.status()); } @@ -186,7 +186,7 @@ impl View for App { 0 } }; - Vec2::new(width, height) + Vec2::new(width, height + 2) } fn take_focus(&mut self, _: Direction) -> bool { -- cgit v1.2.3