We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cffa706 commit 02fb9f8Copy full SHA for 02fb9f8
src/gui.rs
@@ -332,9 +332,7 @@ impl MyApp {
332
}
333
334
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
- {
+ if let Ok(labels) = self.load_names_rx.try_recv() {
338
self.labels = labels;
339
self.colors = (0..max(self.labels.len(), 1))
340
.map(|i| COLORS[i % COLORS.len()])
src/main.rs
@@ -9,7 +9,6 @@ use std::cmp::max;
9
use std::path::PathBuf;
10
use std::sync::mpsc::{Receiver, Sender};
11
use std::sync::{mpsc, Arc, RwLock};
12
-use std::time::Duration;
13
use std::{env, thread};
14
15
use crate::data::{DataContainer, Packet};
0 commit comments