diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-07-19 02:17:06 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 20:47:06 +0000 |
commit | fc81ee83d96cc4b2c9bbc2c3ae743bf7a9acf86a (patch) | |
tree | 108e3dcc40c80aca895575488284c7682bd8f801 /app/src/main/res/layout | |
parent | 018939f815d939cc5ee3e97bea373d26ce94626c (diff) |
Misc cleanups and bugfixes (#2019)
* Fix decrypt activity items being editable
* Remove unused resources and re-roll lint baseline
* Make lint mark all warnings as errors
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/item_field.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/res/layout/item_field.xml b/app/src/main/res/layout/item_field.xml index 9e8dec3c..3d275f35 100644 --- a/app/src/main/res/layout/item_field.xml +++ b/app/src/main/res/layout/item_field.xml @@ -21,7 +21,7 @@ android:id="@+id/item_text" android:layout_width="match_parent" android:layout_height="wrap_content" - android:inputType="none" + android:editable="false" android:textIsSelectable="true" tools:text="p@55w0rd!" /> |