popover: Ignore return value

Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/621>
This commit is contained in:
Guido Günther
2024-03-10 13:39:16 +01:00
parent 15ebd0ffaf
commit d801b77e96

View File

@ -138,7 +138,7 @@ fn set_layout(kind: &str, name: &str) {
.filter(|t| t != &current);
let inputs = vec![(kind, name)].into_iter()
.chain(inputs).collect();
settings.set_value(
let _ = settings.set_value(
"sources",
&variants::ArrayPairString(inputs).to_variant(),
);