Fix libxkbcommon-devel package name for openSUSE

Fixes #5586.
This commit is contained in:
Diego Garza 2021-11-02 15:32:53 -06:00 committed by GitHub
parent 1df7dc5171
commit 33db289f7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ a `zypper` command that should install all of them. If something is
still found to be missing, please open an issue.
```sh
zypper install cmake freetype-devel fontconfig-devel libxcb-devel libxkbcommon-dev
zypper install cmake freetype-devel fontconfig-devel libxcb-devel libxkbcommon-devel
```
#### Slackware

View File

@ -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);
}
},
_ => (),
}
}

View File

@ -407,7 +407,7 @@ where
break 'event_loop;
}
}
}
},
_ => (),
}
}

View File

@ -291,7 +291,7 @@ impl<T> Term<T> {
&& iter.point().column < self.last_column() =>
{
iter.next();
}
},
Direction::Right if cell.flags.contains(Flags::LEADING_WIDE_CHAR_SPACER) => {
if let Some(Indexed { cell: new_cell, .. }) = iter.next() {
*cell = new_cell;