use usize not i32 here

This commit is contained in:
Simon Gardling
2022-04-12 14:19:24 -04:00
parent 36e31fdbc7
commit 945a6289d8
3 changed files with 3 additions and 3 deletions

View File

@@ -474,7 +474,7 @@ impl MathApp {
);
// Contains the function string in a text box that the user can edit
function.auto_complete(ui, i as i32)
function.auto_complete(ui, i)
});
function.settings(ctx);
}