This commit is contained in:
iris committed 2025-11-15 01:10:27 -05:00
1 parent ffe14a24d3
commit c1a5edb39c
2 files changed
+2 -1

No files matched your search

+1 -1
View File
@@ -62,7 +62,7 @@ impl ApplicationHandler<ClientEvent> for App {
impl AppHandle {
pub fn send(&self, event: ClientEvent) {
self.proxy.send_event(event);
self.proxy.send_event(event).unwrap();
self.window.request_redraw();
}
}
+1
View File
@@ -14,6 +14,7 @@ mod ui;
pub use app::AppHandle;
#[derive(Debug)]
pub enum ClientEvent {
Connect,
}