mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-22 13:22:28 +00:00
increase minimum size
This commit is contained in:
parent
17ed589f4e
commit
572aefe7cf
|
@ -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]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user