Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
This file is meant as an easy way for us to collate notes and change logs across releases.
-->

## CommCare 2.65

### Release Notes

#### Important Bug Fixes

- Fixed an issue where the day and year fields of the date widget used by date questions with a `gregorian` appearance could not be edited with the keyboard in landscape.

### QA Notes

- Gregorian Date Widget: set a date in portrait, rotate to landscape, and update it with the keyboard. Tapping the day or the year field should bring up the keyboard's own full-width editor with a DONE key, and the value typed there should apply to the widget once DONE is pressed.

## CommCare 2.63.5

### Release Notes
Expand Down
4 changes: 2 additions & 2 deletions app/res/layout/list_gregorian_widget.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
android:inputType="number"
android:maxLength="2"
android:selectAllOnFocus="true"
android:imeOptions="flagNoExtractUi"/>
android:imeOptions="actionDone"/>

<Button
android:id="@+id/daydownbtn"
Expand Down Expand Up @@ -160,7 +160,7 @@
android:inputType="number"
android:maxLength="4"
android:selectAllOnFocus="true"
android:imeOptions="flagNoExtractUi"
android:imeOptions="actionDone"
android:layout_marginStart="5dp" />

<Button
Expand Down
Loading