increase minimum size

This commit is contained in:
nyx 2024-10-01 20:23:57 -04:00
parent 17ed589f4e
commit 572aefe7cf
No known key found for this signature in database
GPG Key ID: 9924455A3BB7D06C

View File

@ -22,8 +22,8 @@ use ratatui::{
Frame,
};
const MIN_WIDTH: u16 = 77;
const MIN_HEIGHT: u16 = 19;
const MIN_WIDTH: u16 = 100;
const MIN_HEIGHT: u16 = 30;
const TITLE: &str = concat!("Linux Toolbox - ", env!("BUILD_DATE"));
const ACTIONS_GUIDE: &str = "List of important tasks performed by commands' names:
@ -748,4 +748,4 @@ fn get_random_tip() -> &'static str {
let mut rng = rand::thread_rng();
let random_index = rng.gen_range(0..tips.len());
tips[random_index]
}
}