Disable width measuring

This commit is contained in:
Joscha 2022-06-13 22:42:12 +02:00
parent 3b8cd6c0a1
commit f36f205a40

View file

@ -10,7 +10,7 @@ use ui::Ui;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let mut terminal = Terminal::new()?;
terminal.set_measuring(true);
// terminal.set_measuring(true);
Ui::run(&mut terminal).await?;
Ok(())
}