GNOME Bugzilla – Bug 505168
Truncated numbers not visually marked
Last modified: 2010-04-15 02:42:10 UTC
When in arithmetic mode the display can contain numbers that are approximations (e.g. the Ans variable). There is no way for the user to tell the difference between an approximated number. e.g. 1. Set accuracy to 2sf 2. Enter '1/3' (enter) 3. Display shows '0.33' 4. Type '+0.33' 5. Display shows '0.33+0.33' The user has no way of knowing which number is an approximation and which is not. I suggest we use bold/colour/underline so show the approximated numbers.
Robert, if we can bold/color/underline the trunkated number and pass the information somehow to the parser also, then we can also fix expression hand-editing. Because we can then make the parser to detect and handle the truncated number. Basically all we need is to point out to the parser, which number is truncated. My proof-of-concept patch used ".." at the end of the truncated number. However, the idea is that any marking will do.