forked from streetcomplete/StreetComplete
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Refactor LastUsedValuesStore to use sequences instead of LinkedList #3
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The undo button popup menu allegedly exists because the history screen makes it slower to undo the most recent entry. However, the menu itself *also* makes it slower to undo the most recent entry, so it barely saves any time. So, we might as well just open the full history directly. streetcomplete#3330 (comment)
Undoing the most recent entry in the history is probably the most common action, so we'd like it to be faster. This removes a tap by pre-selecting the first entry when the sidebar is first opened.
This makes the most recent edit start at the bottom, so when you tap the undo button, you don't need to move your hand far to undo the most recent edit. It would be nice to have a slightly larger bottom padding, so the button lines up perfectly and it's just a double-tap.
'Concrete lanes' not 'Concrete without full cover'
…ht mode fade out colors
# Conflicts: # app/src/main/java/de/westnordost/streetcomplete/data/quest/QuestAutoSyncer.kt
Why is Lines 38 to 46 in 6da0377
|
82de9eb
to
4057a50
Compare
- one more conversion option in a stile quest - synonym in barrier type quest Synonym may cause users to agonize over selecting exactly equivalent options. But will also reduce confusion when encountering a pedestrian gate and considering it as different from a vehicle gate. fixes streetcomplete#3188
add pedestrian gate answer in barrier quests
Sort building type by recently used frequency
Using a sequence here doesn't really make sense, but it will in the next commit when I remove LinkedList entirely
4057a50
to
201935e
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
To be sent upstream once streetcomplete#3373 is merged