chore(draw_blocks.rs): format code using rustfmt to improve code readability

chore(draw_blocks.rs): remove unnecessary indentation in NAME_TEXT constant to improve code readability
This commit is contained in:
Daniel Boll
2023-10-31 11:55:06 -03:00
parent 1d1b42516f
commit 67770a1058
+6 -5
View File
@@ -24,14 +24,15 @@ use crate::{
use super::gui_state::{BoxLocation, DeleteButton, Region}; use super::gui_state::{BoxLocation, DeleteButton, Region};
use super::{GuiState, SelectablePanel}; use super::{GuiState, SelectablePanel};
#[rustfmt::skip]
const NAME_TEXT: &str = r#" const NAME_TEXT: &str = r#"
88 88
88 88
88 88
,adPPYba, 8b, ,d8 88 ,d8 ,adPPYba, 8b,dPPYba, ,adPPYba, 8b, ,d8 88 ,d8 ,adPPYba, 8b,dPPYba,
a8" "8a `Y8, ,8P' 88 ,a8" a8P_____88 88P' "Y8 a8" "8a `Y8, ,8P' 88 ,a8" a8P_____88 88P' "Y8
8b d8 )888( 8888[ 8PP""""""" 88 8b d8 )888( 8888[ 8PP""""""" 88
"8a, ,a8" ,d8" "8b, 88`"Yba, "8b, ,aa 88 "8a, ,a8" ,d8" "8b, 88`"Yba, "8b, ,aa 88
`"YbbdP"' 8P' `Y8 88 `Y8a `"Ybbd8"' 88 "#; `"YbbdP"' 8P' `Y8 88 `Y8a `"Ybbd8"' 88 "#;
const NAME: &str = env!("CARGO_PKG_NAME"); const NAME: &str = env!("CARGO_PKG_NAME");