Update egui/wgpu another major version
This commit is contained in:
+4
-5
@@ -9,12 +9,13 @@ use std::{
|
||||
atomic::{AtomicBool, Ordering},
|
||||
mpsc::{self, RecvError, TryRecvError},
|
||||
},
|
||||
time::Duration,
|
||||
};
|
||||
|
||||
use anyhow::Result;
|
||||
use atomic::Atomic;
|
||||
use bytemuck::NoUninit;
|
||||
use egui_toast::{Toast, ToastKind, ToastOptions};
|
||||
use egui_notify::Toast;
|
||||
use tracing::{error, warn};
|
||||
|
||||
use crate::{
|
||||
@@ -726,10 +727,8 @@ impl Emulator {
|
||||
.get(&sim_id)
|
||||
.or_else(|| self.messages.get(&SimId::Player1));
|
||||
if let Some(msg) = messages {
|
||||
let toast = Toast::new()
|
||||
.kind(ToastKind::Error)
|
||||
.options(ToastOptions::default().duration_in_seconds(5.0))
|
||||
.text(&message);
|
||||
let mut toast = Toast::error(&message);
|
||||
toast.duration(Some(Duration::from_secs(5)));
|
||||
if msg.send(toast).is_ok() {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user