Skip to content

Commit

Permalink
Make sure 'go up' icon is always second from the edge
Browse files Browse the repository at this point in the history
For consistency with the 'jump' button in FormEntry.
  • Loading branch information
cooperka committed Jan 23, 2019
1 parent 25a6c43 commit 7dcbd7d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions collect_app/src/main/res/menu/form_hierarchy_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<item
android:id="@+id/menu_go_up"
android:icon="@drawable/ic_arrow_upward"
android:title="@string/jump_to_previous"
android:visible="false"
app:showAsAction="always"/>

<item
android:id="@+id/menu_delete_child"
android:icon="@drawable/ic_delete"
Expand All @@ -26,11 +33,4 @@
android:visible="false"
app:showAsAction="always"/>

<item
android:id="@+id/menu_go_up"
android:icon="@drawable/ic_arrow_upward"
android:title="@string/jump_to_previous"
android:visible="false"
app:showAsAction="always"/>

</menu>

0 comments on commit 7dcbd7d

Please sign in to comment.