From 19081b72c059939a0147095a8bc994cc5c4b9d40 Mon Sep 17 00:00:00 2001 From: neon_arch Date: Tue, 12 Dec 2023 15:06:27 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20provide=20a=20new=20setting?= =?UTF-8?q?s=20option=20to=20change=20or=20disable=20animations=20(#424)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../partials/settings_tabs/user_interface.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/templates/partials/settings_tabs/user_interface.rs b/src/templates/partials/settings_tabs/user_interface.rs index c978c3e..d94465b 100644 --- a/src/templates/partials/settings_tabs/user_interface.rs +++ b/src/templates/partials/settings_tabs/user_interface.rs @@ -60,6 +60,17 @@ pub fn user_interface() -> Result> { option value=(k){(v)} } } + h3{"select animation"} + p class="description"{ + "Select the animation for your theme to be used in user interface" + } + select name="animations"{ + option value=""{"none"} + @for (k,v) in style_option_list("animations")?{ + option value=(k){(v)} + } + } + } )) }