Right now, OO has some UI code that is modifying the text of a numeric edit field to delete a period (".") when the number doesn't have any digits after the decimal point. For example, "12." is turned into "12". This makes the UI clean, but unfortunately, it does this after every keystroke. So, if I'm editing "12.1" and need to turn that into "12.2", and the cursor is after the "1", I'd expect that I can edit that by typing <backspace> "2" and that would make the change. But no. When I type <backspace>, the OO UI now changes the text to "12", so typing the "2" now results in "122". That's bad. If you're going to "clean up" any of the user-typed text, do it AFTER the user's cursor has left the field. When the user is in the middle of changing text, it becomes difficult to know what is going to happen if the UI is also modifying things. I would pretty much classify this as a UI bug, but you don't seem to have a category for that in the Discord and this page.