diff options
author | Diego Garza <diego.gt.rh@gmail.com> | 2021-11-02 15:32:53 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 21:32:53 +0000 |
commit | 33db289f7fe31b5200317055899df6ec40bdfc6f (patch) | |
tree | 2bb7a5f72920b3c12bd3f9975457481fdc40be69 /alacritty/src/config/monitor.rs | |
parent | 1df7dc5171abfe1eab3e95be964f61c5876198f1 (diff) | |
download | alacritty-33db289f7fe31b5200317055899df6ec40bdfc6f.tar.gz alacritty-33db289f7fe31b5200317055899df6ec40bdfc6f.zip |
Fix libxkbcommon-devel package name for openSUSE
Fixes #5586.
Diffstat (limited to 'alacritty/src/config/monitor.rs')
-rw-r--r-- | alacritty/src/config/monitor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/config/monitor.rs b/alacritty/src/config/monitor.rs index 9d37172e..63f7549f 100644 --- a/alacritty/src/config/monitor.rs +++ b/alacritty/src/config/monitor.rs @@ -80,7 +80,7 @@ pub fn watch(mut paths: Vec<PathBuf>, event_proxy: EventLoopProxy<Event>) { // Always reload the primary configuration file. let event = Event::new(EventType::ConfigReload(paths[0].clone()), None); let _ = event_proxy.send_event(event); - } + }, _ => (), } } |