Allow notifications on open room if terminal not focused (#281)
This commit is contained in:
@@ -355,9 +355,13 @@ impl Application {
|
||||
// Do nothing for now.
|
||||
},
|
||||
Event::FocusGained => {
|
||||
let mut store = self.store.lock().await;
|
||||
store.application.focused = true;
|
||||
self.focused = true;
|
||||
},
|
||||
Event::FocusLost => {
|
||||
let mut store = self.store.lock().await;
|
||||
store.application.focused = false;
|
||||
self.focused = false;
|
||||
},
|
||||
Event::Resize(_, _) => {
|
||||
|
||||
Reference in New Issue
Block a user