diff options
author | Joris | 2022-01-09 14:37:35 +0100 |
---|---|---|
committer | Joris | 2022-01-09 14:37:35 +0100 |
commit | d0a9063631e71928484a698f6c585ebb3915e8a2 (patch) | |
tree | 9a5fc430684aea73877711dd3392b1845d4b9904 /src/app/mod.rs | |
parent | 5166efe517291f5c9fc6326f30651ef799d6db65 (diff) |
Allow to update events
Diffstat (limited to 'src/app/mod.rs')
-rw-r--r-- | src/app/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/mod.rs b/src/app/mod.rs index 30b59af..c9a7f83 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -24,7 +24,7 @@ pub fn run(conn: Connection) { fn build_ui(conn: Rc<Connection>, app: >k::Application) { let (tx, rx) = async_channel::unbounded(); let app = App::new(conn.clone(), app, tx.clone()); - utils::spawn(update::event_handler(conn, rx, tx, app)) + utils::spawn(update::event_handler(rx, app)) } fn load_style() { |