Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I spent a long time looking at slider positioning logic in an attempt to fix #128
I could not fix #128, but I did make the slider code more readable (imo), and changed it to use save tick time instead of name. This fixes some issues with saves that are the same hour as other saves, which are then named "2-1" (for the 2nd save of 2hrs, after "2")
The slider code had two states:
Here I provide a before/after example of both. The saves used are those in #128, which are at times 00:05, 00:30, 01:20, and 02:31.
Normal state
Before
After
Dense state
Before
After
Conclusion
As you can see, the "1-1" save (the 00:05 h) save was wrongly positioned before, but now is placed correctly.
I hope you find my changes acceptable. Thanks for continuing to maintain this great tool.