Run cargo fmt
This commit is contained in:
parent
04d17179a0
commit
c06a598a86
4 changed files with 6 additions and 4 deletions
|
|
@ -4,8 +4,8 @@ mod overlays;
|
|||
mod pane;
|
||||
mod room;
|
||||
mod rooms;
|
||||
mod textline;
|
||||
mod styles;
|
||||
mod textline;
|
||||
|
||||
use std::collections::hash_map::Entry;
|
||||
use std::collections::HashMap;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
use crossterm::event::{KeyCode, KeyEvent};
|
||||
use tui::buffer::Buffer;
|
||||
use tui::layout::Rect;
|
||||
use tui::widgets::{Block, Borders, StatefulWidget, Widget, Clear};
|
||||
use tui::widgets::{Block, Borders, Clear, StatefulWidget, Widget};
|
||||
|
||||
use crate::ui::input::EventHandler;
|
||||
use crate::ui::layout;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ pub fn title() -> Style {
|
|||
Style::default().add_modifier(Modifier::BOLD)
|
||||
}
|
||||
|
||||
pub fn error()->Style{
|
||||
pub fn error() -> Style {
|
||||
Style::default().fg(Color::Red)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue