change delete icon

This commit is contained in:
Simon Gardling 2022-04-13 15:28:59 -04:00
parent 5f9b3823ff
commit 89f17de498
2 changed files with 3 additions and 3 deletions

View File

@ -14,8 +14,8 @@
"- The Sun/Moon button toggles Dark and Light mode."
],
"help_function": [
"- The 'X' button before the '∫' button allows you to delete the function in question. Deleting a function is prevented if only 1 function exists.",
"- The ∫ button (between the 'X' and 'd/dx' buttons) indicates whether to integrate the function in question.",
"- The '' button before the '∫' button allows you to delete the function in question. Deleting a function is prevented if only 1 function exists.",
"- The ∫ button (between the '' and 'd/dx' buttons) indicates whether to integrate the function in question.",
"- The 'd/dx' button next to the gear icon indicates whether or not calculating the derivative is enabled or not.",
"- The gear icon next to the function input allows you to tweak settings in relation to the selected function."
],

View File

@ -206,7 +206,7 @@ impl FunctionEntry {
ui.horizontal(|ui| {
// There's more than 1 function! Functions can now be deleted
if ui
.add_enabled(can_remove, Button::new("X").frame(false))
.add_enabled(can_remove, Button::new("").frame(false))
.on_hover_text("Delete Function")
.clicked()
{