From 84254778e8cde9642c9efd93948529b20aac01f7 Mon Sep 17 00:00:00 2001 From: StNicolay Date: Tue, 16 Apr 2024 18:13:08 +0300 Subject: [PATCH] Changed button order in account markup --- src/markups.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markups.rs b/src/markups.rs index 008b925..46ffcee 100644 --- a/src/markups.rs +++ b/src/markups.rs @@ -66,8 +66,8 @@ pub fn account_markup(name: &str, is_encrypted: bool, locale: LocaleRef) -> Inli (locale.change_name_button.as_ref(), "an"), (locale.change_login_button.as_ref(), "al"), (locale.change_password_button.as_ref(), "ap"), - encryption_button, (locale.delete_account_button.as_ref(), "delete0"), + encryption_button, ] .into_iter() .map(|(text, command)| make_button(text, command, hash))