title image, ui tweaks

This commit is contained in:
Llywelwyn 2023-07-29 02:21:36 +01:00
parent 2d4758ced1
commit be2c8a35a5
11 changed files with 238 additions and 171 deletions

View file

@ -35,7 +35,7 @@ impl Logger {
/// Appends a period to the current message logger.
pub fn period(mut self) -> Self {
self.fragments.push(LogFragment { colour: self.current_colour, text: ".".to_string() });
self.fragments.push(LogFragment { colour: self.current_colour, text: ". ".to_string() });
return self;
}