Skip to content

Commit 02fb9f8

Browse files
committed
remove timeouts
1 parent cffa706 commit 02fb9f8

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/gui.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,7 @@ impl MyApp {
332332
}
333333

334334
if self.data.loaded_from_file && self.file_opened {
335-
if let Ok(labels) =
336-
self.load_names_rx.recv_timeout(Duration::from_millis(10))
337-
{
335+
if let Ok(labels) = self.load_names_rx.try_recv() {
338336
self.labels = labels;
339337
self.colors = (0..max(self.labels.len(), 1))
340338
.map(|i| COLORS[i % COLORS.len()])

src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use std::cmp::max;
99
use std::path::PathBuf;
1010
use std::sync::mpsc::{Receiver, Sender};
1111
use std::sync::{mpsc, Arc, RwLock};
12-
use std::time::Duration;
1312
use std::{env, thread};
1413

1514
use crate::data::{DataContainer, Packet};

0 commit comments

Comments
 (0)