From 78704bba85f7d70a0f20581c776626fe9443aefa Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Thu, 19 Aug 2021 19:55:34 +0200 Subject: [PATCH] fix(calc): Fix display of name for Qalculate --- plugins/src/calc/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/src/calc/mod.rs b/plugins/src/calc/mod.rs index aa9eac5..4fb1636 100644 --- a/plugins/src/calc/mod.rs +++ b/plugins/src/calc/mod.rs @@ -61,7 +61,7 @@ impl App { pub async fn context(&mut self) { let options = vec![ContextOption { id: 0, - name: "Qalc Manual".into(), + name: "Qalculate! Manual".into(), }]; crate::send(&mut self.out, PluginResponse::Context { id: 0, options }).await; @@ -80,7 +80,7 @@ impl App { .outcome .clone() .unwrap_or_else(|| [search, " x = ?"].concat()), - description: "Math expressions by Qalc".to_owned(), + description: "Math expressions by Qalculate!".to_owned(), icon: Some(IconSource::Name(Cow::Borrowed("accessories-calculator"))), ..Default::default() }),