aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/menu
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2016-02-22 22:22:45 +0100
committerVincent Breitmoser <valodim@mugenguild.com>2016-02-22 22:22:45 +0100
commit4df63ccdeb8bd26f507c88980b360bdc367faa0f (patch)
treef0589226486a5f34acdcb005381d4e04f7e4b209 /OpenKeychain/src/main/res/menu
parentf61de278b4ca452678c1d791a9e0944cc6e93001 (diff)
downloadopen-keychain-4df63ccdeb8bd26f507c88980b360bdc367faa0f.tar.gz
open-keychain-4df63ccdeb8bd26f507c88980b360bdc367faa0f.tar.bz2
open-keychain-4df63ccdeb8bd26f507c88980b360bdc367faa0f.zip
displaytext: add "View Log" option, move "Copy to clipboard" into overflow menu
Diffstat (limited to 'OpenKeychain/src/main/res/menu')
-rw-r--r--OpenKeychain/src/main/res/menu/decrypt_menu.xml15
1 files changed, 10 insertions, 5 deletions
diff --git a/OpenKeychain/src/main/res/menu/decrypt_menu.xml b/OpenKeychain/src/main/res/menu/decrypt_menu.xml
index 0b81ea1db..4e31fb6a6 100644
--- a/OpenKeychain/src/main/res/menu/decrypt_menu.xml
+++ b/OpenKeychain/src/main/res/menu/decrypt_menu.xml
@@ -3,15 +3,20 @@
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
+ android:id="@+id/decrypt_share"
+ android:title="@string/btn_share_decrypted_text"
+ android:icon="@drawable/ic_share_black_24dp"
+ app:showAsAction="ifRoom" />
+
+ <item
android:id="@+id/decrypt_copy"
android:title="@string/btn_copy_decrypted_text"
android:icon="@drawable/ic_content_copy_black_24dp"
- app:showAsAction="ifRoom" />
+ app:showAsAction="never" />
<item
- android:id="@+id/decrypt_share"
- android:title="@string/btn_share_decrypted_text"
- android:icon="@drawable/ic_share_black_24dp"
- app:showAsAction="ifRoom" />
+ android:id="@+id/decrypt_view_log"
+ android:title="@string/btn_view_log"
+ app:showAsAction="never" />
</menu>