add comment

This commit is contained in:
Simon Gardling 2022-03-29 08:33:57 -04:00
parent 3febb926ef
commit 47f149dd67

View File

@ -494,6 +494,7 @@ impl MathApp {
.has_focus();
// If in focus and right arrow key was pressed, apply hint
// TODO: change position of cursor
if func_edit_focus && ui.input().key_down(Key::ArrowRight) {
self.func_strs[i] += &hint;
}