Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkorelstar <korelstar@users.noreply.github.com>2017-09-07 22:36:02 +0300
committerkorelstar <korelstar@users.noreply.github.com>2017-09-07 22:36:02 +0300
commitd12923d1d6d5b19bcc58f291e83265ef4ce997d2 (patch)
tree2b31785a67a0ccf30758581b93f00a2ec815c699 /app/src/main/res/menu
parent23d9aa24e5cea333425810e04afbbacaaa174d4e (diff)
fix menu label and order
Diffstat (limited to 'app/src/main/res/menu')
-rw-r--r--app/src/main/res/menu/menu_note_list_view.xml18
1 files changed, 12 insertions, 6 deletions
diff --git a/app/src/main/res/menu/menu_note_list_view.xml b/app/src/main/res/menu/menu_note_list_view.xml
index 45436f9a..34122d5a 100644
--- a/app/src/main/res/menu/menu_note_list_view.xml
+++ b/app/src/main/res/menu/menu_note_list_view.xml
@@ -2,16 +2,22 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
- android:id="@+id/menu_favorite"
+ android:id="@+id/menu_preview"
+ android:icon="@drawable/ic_eye_white_24dp"
android:orderInCategory="50"
- android:title="@string/menu_favorite"
- android:checkable="true"
+ android:title="@string/menu_preview"
app:showAsAction="ifRoom" />
<item
- android:id="@+id/menu_preview"
- android:icon="@drawable/ic_eye_white_24dp"
+ android:id="@+id/menu_edit"
+ android:icon="@drawable/ic_action_edit_24dp"
+ android:orderInCategory="50"
+ android:title="@string/menu_edit"
+ app:showAsAction="ifRoom" />
+ <item
+ android:id="@+id/menu_favorite"
android:orderInCategory="80"
- android:title="@string/menu_preview"
+ android:title="@string/menu_favorite"
+ android:checkable="true"
app:showAsAction="ifRoom" />
<item
android:id="@+id/menu_category"