-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in typed_input #308
Comments
Well we do want typed input to output errors for the change as this is relevant to how it should work since we are dealing with Text to Values and since we support both integers and floats this is indeed needed. Also the . issues could not be fully resolved in number input itself so i had to do it in typed input. I did run the number input and it was working from the Example just fine? so i don't know what you mean by no longer working? Also number input should know when Typed input doesn't process something so it can do its own work. These are just steps to making it more Relevant to taking any input and allowing it to return if its needed or not to the end user. However I do seem to have a issue where the formatting of Strings removes the . due to anything .0 being reduced down to the main number via formatting rounding. Was thinking the only way to fix that would be to handle each number to character manually rather than rely on formatting. Which would be better as we could better control the input too. |
Are the arrow buttons supposed to be after the typed input? I thought it was meant to be above the typed input. For the eight, the issue comes from the fact that float 32 goes from 249.9999847412109375 to 250 and that the formatting rounds it to 249.99998, and after that anything you add can't make it closer to any other number |
ahh ok making sure as i did not know how the rounding and such went for formatting. And yeah the Arrow Keys are in the Box But the Text should not be above or Below them. it should be next to them otherwise you wont be able to Select the Text easily. |
Do you mean that the number shouldn't be below the arrows? |
I looked at the previous version and it was already the case. Currently, I don't see a solution for that but if I think of one I'll do it |
Anyways I think once some others Try it out and verify too we can then close all of the issues for number input |
ok thank you. When you get a chance can you add your changes to the Changelog under unreleased. |
Hi,
@genusistimelord, you pushed some new modification to
typed_input
with commits 55d23d8 and 1bed9d4.With commit 55d23d8, you seemed to have followed some queries in issues like #306 that I explained why they were irrelevant to add, like having the
on_change
returning a result.For example, now the
number_input
does not work.With the commit 1bed9d4, you seemed to fix issue #299. In this commit you change the behavior of the
typed_input
when the text finishes with a.
which changes the generality of the widget. This modification should have been done innumber_input
.Is there a reason behind this modification?
The text was updated successfully, but these errors were encountered: