diff options
author | Vincent Breitmoser <valodim@mugenguild.com> | 2014-10-06 15:42:47 +0200 |
---|---|---|
committer | Vincent Breitmoser <valodim@mugenguild.com> | 2014-10-06 15:42:47 +0200 |
commit | f703d55bcad0391ef559c2ad472403796b7e893d (patch) | |
tree | 582e914ce414b120b7ccd3e189fb70cf240fc4ef /OpenKeychain/src | |
parent | b16a550fbb038e6509f7f65e0dcb7a944682c6fe (diff) | |
download | open-keychain-f703d55bcad0391ef559c2ad472403796b7e893d.tar.gz open-keychain-f703d55bcad0391ef559c2ad472403796b7e893d.tar.bz2 open-keychain-f703d55bcad0391ef559c2ad472403796b7e893d.zip |
move "synchronize" checkbox to bottom section as well
Diffstat (limited to 'OpenKeychain/src')
-rw-r--r-- | OpenKeychain/src/main/res/layout/multi_certify_key_fragment.xml | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/OpenKeychain/src/main/res/layout/multi_certify_key_fragment.xml b/OpenKeychain/src/main/res/layout/multi_certify_key_fragment.xml index 24af7e518..c3d63e494 100644 --- a/OpenKeychain/src/main/res/layout/multi_certify_key_fragment.xml +++ b/OpenKeychain/src/main/res/layout/multi_certify_key_fragment.xml @@ -31,23 +31,6 @@ <TextView style="@style/SectionHeader" android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginBottom="4dp" - android:layout_marginTop="14dp" - android:text="@string/section_upload_key" /> - - <CheckBox - android:id="@+id/sign_key_upload_checkbox" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginBottom="4dp" - android:layout_marginTop="4dp" - android:checked="false" - android:text="@string/label_send_key" /> - - <TextView - style="@style/SectionHeader" - android:layout_width="wrap_content" android:layout_height="0dp" android:layout_marginTop="14dp" android:text="@string/section_certify" @@ -76,6 +59,20 @@ </LinearLayout> + <CheckBox + android:id="@+id/sign_key_upload_checkbox" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginBottom="4dp" + android:layout_marginTop="4dp" + android:checked="false" + android:text="@string/label_send_key" /> + + <View + android:layout_width="match_parent" + android:layout_height="1dip" + android:background="?android:attr/listDivider"/> + <LinearLayout android:id="@+id/certify_key_certify_button" android:layout_width="match_parent" |