add a time bar #8

Merged
PlexSheep merged 18 commits from feat/timebar into devel 2024-07-11 16:55:49 +02:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit d433023791 - Show all commits

View File

@ -14,6 +14,7 @@ use ratatui::style::{Style, Stylize};
use ratatui::widgets::{Block, LineGauge, Padding, Paragraph};
use ratatui::Terminal;
use std::io::Stdout;
use std::thread::{sleep, sleep_ms};
use std::time::{Duration, Instant};
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
@ -66,7 +67,7 @@ pub struct Clock {
}
#[derive(Debug, Clone, PartialEq, Default)]
pub(crate) struct UiData {
pub struct UiData {
fdate: [String; 2],
ftime: [String; 2],
timebar_ratio: [Option<f64>; 2],