feat(core): wire up rendering error notification

This commit is contained in:
Federico Terzi 2021-10-31 22:22:01 +01:00
parent 24087e8441
commit 63b56c09ed

View File

@ -68,4 +68,9 @@ impl<'a> espanso_engine::process::NotificationManager for NotificationManager<'a
self.notify("Espanso disabled!")
}
}
fn notify_rendering_error(&self) {
self
.notify("An error occurred during rendering, please examine the logs for more information.");
}
}