Charalampos Mitsakis
Charalampos Mitsakis
Your PR has helped me. Thank you. One issue I noticed is that if you do a MultiPV search, `eng.SearchResults().Info` shows the score of the last MultiPV result which is...
I implemented the changes I described and created a new PR
In Table it's not possible to access the cells because they are stored in TableCellsRenderer. That's why I couldn't create a test (although I created a test for my fix...
I improved the test. I found out how to calculate the exact size that triggers this bug. Although when I run the test with -race it doesn't work as expected....
I was bitten by this unexpected behavior when I tried to parse a big number that couldn't be represented accurately as a `number`. I believe all non-flag arguments should be...
> This is fixed on develop I am pretty sure. Please re-open if not. It is not fixed. Please re-open.
I will look into it this week
This bug happens because sometimes t.offset.Y becomes negative. This happens after this line: https://github.com/fyne-io/fyne/blob/56dd0f3e0f3233e5f72087cd44d04eeac24ee6dd/widget/table.go#L402 You understand this code better than me, but if I understood correctly in the function ScrollToBottom()...
> EDIT: just thought that maybe in that case we could just not scroll at all. I can test it. just tested it ```Go y := cellY + cellHeight -...
so I changed ScrollToBottom() and ScrollToTrailing() to return early. I also just noticed that in ScrollTo() this bug cannot happen because the if statement guarantees the calculated offset is always...