neon_arch commited on
Commit
19081b7
1 Parent(s): 1a2a833

✨ feat: provide a new settings option to change or disable animations (#424)

Browse files
src/templates/partials/settings_tabs/user_interface.rs CHANGED
@@ -60,6 +60,17 @@ pub fn user_interface() -> Result<Markup, Box<dyn std::error::Error>> {
60
  option value=(k){(v)}
61
  }
62
  }
 
 
 
 
 
 
 
 
 
 
 
63
  }
64
  ))
65
  }
 
60
  option value=(k){(v)}
61
  }
62
  }
63
+ h3{"select animation"}
64
+ p class="description"{
65
+ "Select the animation for your theme to be used in user interface"
66
+ }
67
+ select name="animations"{
68
+ option value=""{"none"}
69
+ @for (k,v) in style_option_list("animations")?{
70
+ option value=(k){(v)}
71
+ }
72
+ }
73
+
74
  }
75
  ))
76
  }