Skip to content

Commit

Permalink
put wheelchair "LIMITED" answer at more logical place
Browse files Browse the repository at this point in the history
(between NO and YES answers)
  • Loading branch information
mnalis authored and westnordost committed Sep 7, 2024
1 parent 7eb4437 commit 962c7b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ open class WheelchairAccessForm : AbstractOsmQuestForm<WheelchairAccess>() {

override val buttonPanelAnswers = listOf(
AnswerItem(R.string.quest_generic_hasFeature_no) { applyAnswer(NO) },
AnswerItem(R.string.quest_generic_hasFeature_yes) { applyAnswer(YES) },
AnswerItem(R.string.quest_wheelchairAccess_limited) { applyAnswer(LIMITED) },
AnswerItem(R.string.quest_generic_hasFeature_yes) { applyAnswer(YES) },
)
}

0 comments on commit 962c7b2

Please sign in to comment.