diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-06-01 04:16:45 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-06-01 14:57:25 +0200 |
commit | 918076a6703268307e7856dcd5f25c4f3dc870ab (patch) | |
tree | 2eb957c32b249401b717afc8f8adaba611af2767 /app/src/main/res/layout | |
parent | 752e61d1c74ac12d59d55c623804fe39187179c0 (diff) |
global: fix theme situation and clean up cruft while adding more cruft
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/tunnel_editor_peer.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/tunnel_list_fragment.xml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/src/main/res/layout/tunnel_editor_peer.xml b/app/src/main/res/layout/tunnel_editor_peer.xml index 40e16136..309ef7bb 100644 --- a/app/src/main/res/layout/tunnel_editor_peer.xml +++ b/app/src/main/res/layout/tunnel_editor_peer.xml @@ -51,7 +51,7 @@ android:background="@null" android:contentDescription="@string/delete" android:onClick="@{() -> collection.remove(item)}" - android:src="@drawable/ic_action_delete_black" /> + android:src="@drawable/ic_action_delete" /> <TextView android:id="@+id/public_key_label" diff --git a/app/src/main/res/layout/tunnel_list_fragment.xml b/app/src/main/res/layout/tunnel_list_fragment.xml index 444b0952..29b6fe08 100644 --- a/app/src/main/res/layout/tunnel_list_fragment.xml +++ b/app/src/main/res/layout/tunnel_list_fragment.xml @@ -44,7 +44,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="@{fragment::onRequestCreateConfig}" - app:fab_icon="@drawable/ic_action_edit" + app:fab_icon="@drawable/ic_action_edit_inverse" app:fab_size="mini" app:fab_title="@string/create_empty" /> @@ -53,7 +53,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="@{fragment::onRequestImportConfig}" - app:fab_icon="@drawable/ic_action_open" + app:fab_icon="@drawable/ic_action_open_inverse" app:fab_size="mini" app:fab_title="@string/create_from_file" /> </com.wireguard.android.widget.fab.FloatingActionsMenu> |