diff --git a/app/src/main.rs b/app/src/main.rs index 23fc0b2..22d4406 100644 --- a/app/src/main.rs +++ b/app/src/main.rs @@ -15,7 +15,7 @@ impl NetworkScope for NetworkMain { type R = (); fn run(self, network: &mut Ctx) -> Self::R { - let mut storage = Arc::new(SynchronizedServersStorage::::new(10)); + let mut storage = Arc::new(SynchronizedServersStorage::::new(100)); thread::scope(|s| { s.spawn(|| { diff --git a/gui/egui/src/lib.rs b/gui/egui/src/lib.rs index 1a9f931..3f048a5 100644 --- a/gui/egui/src/lib.rs +++ b/gui/egui/src/lib.rs @@ -55,7 +55,7 @@ impl App for EguiApp<'_, Ctx> { .striped(true) // Alternating row colors .resizable(true) .vscroll(true) - .column(Column::exact(self.ctx.graph_sections_count() as f32 * 20.0)) + .column(Column::exact(self.ctx.graph_sections_count() as f32 * 5.0)) .column(Column::remainder()) .column(Column::remainder()) .header(20.0, |mut r| { diff --git a/gui/egui/src/plot.rs b/gui/egui/src/plot.rs index b799c2f..ae5070e 100644 --- a/gui/egui/src/plot.rs +++ b/gui/egui/src/plot.rs @@ -17,7 +17,7 @@ pub(crate) fn draw_plot( canvas_rect.size().y, ); - let gradient_precision = 25; + let gradient_precision = 10; times .take(sections_count)