From 27e76e3ca2e6f13d7a53d78adab5021daf423475 Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Mon, 25 Jul 2022 12:34:18 -0700 Subject: [PATCH] Retouched a test, should still be failing --- crates/terminal/src/terminal.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/terminal/src/terminal.rs b/crates/terminal/src/terminal.rs index 7062b046883d7c9c6eb0ba02d4485353acff68d4..207ed6a69f4ce6912174692180603c6c77f341a5 100644 --- a/crates/terminal/src/terminal.rs +++ b/crates/terminal/src/terminal.rs @@ -45,8 +45,8 @@ pub fn init(cx: &mut MutableAppContext) { } const DEFAULT_TITLE: &str = "Terminal"; -const DEBUG_TERMINAL_WIDTH: f32 = 1000.; //This needs to be wide enough that the prompt can fill the whole space. -const DEBUG_TERMINAL_HEIGHT: f32 = 200.; +const DEBUG_TERMINAL_WIDTH: f32 = 100.; +const DEBUG_TERMINAL_HEIGHT: f32 = 30.; //This needs to be wide enough that the CI & a local dev's prompt can fill the whole space. const DEBUG_CELL_WIDTH: f32 = 5.; const DEBUG_LINE_HEIGHT: f32 = 5.;