Skip to content

Commit

Permalink
decrease tick rate
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Sep 11, 2024
1 parent b04bda5 commit 125b919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oryx-tui/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn main() -> AppResult<()> {

let backend = CrosstermBackend::new(io::stdout());
let terminal = Terminal::new(backend)?;
let events = EventHandler::new(250);
let events = EventHandler::new(1_000);
let mut tui = Tui::new(terminal, events);
tui.init()?;

Expand Down

0 comments on commit 125b919

Please sign in to comment.