fix(core): disable undo_backspace on Wayland due to stability issues
This commit is contained in:
parent
27f53c386c
commit
9628361db0
|
@ -164,6 +164,11 @@ impl<'a> espanso_engine::process::MatcherMiddlewareConfigProvider for ConfigMana
|
|||
|
||||
impl<'a> espanso_engine::process::UndoEnabledProvider for ConfigManager<'a> {
|
||||
fn is_undo_enabled(&self) -> bool {
|
||||
// Disable undo_backspace on Wayland for now as it's not stable
|
||||
if cfg!(feature = "wayland") {
|
||||
return false
|
||||
}
|
||||
|
||||
self.active().undo_backspace()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user