diff options
author | Iván Ávalos <avalos@disroot.org> | 2022-01-16 19:22:39 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2022-01-16 19:22:39 -0600 |
commit | f88add3dbf4cafb39b8720efdecb53087e2bc285 (patch) | |
tree | 8feedc9058bef26b61f836e99d72eb987af2235a /androidApp/src/main/res | |
parent | 33e051ae011471e3472a69d405f805319d25bd70 (diff) | |
download | etbsa-trackermap-mobile-f88add3dbf4cafb39b8720efdecb53087e2bc285.tar.gz etbsa-trackermap-mobile-f88add3dbf4cafb39b8720efdecb53087e2bc285.tar.bz2 etbsa-trackermap-mobile-f88add3dbf4cafb39b8720efdecb53087e2bc285.zip |
Fixed hide of device limit when device limit <= 0
Diffstat (limited to 'androidApp/src/main/res')
-rw-r--r-- | androidApp/src/main/res/layout/user_information_activity.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/androidApp/src/main/res/layout/user_information_activity.xml b/androidApp/src/main/res/layout/user_information_activity.xml index 252505f..45e747c 100644 --- a/androidApp/src/main/res/layout/user_information_activity.xml +++ b/androidApp/src/main/res/layout/user_information_activity.xml @@ -105,6 +105,7 @@ android:id="@+id/deviceLimitInfoLabel" android:layout_width="match_parent" android:layout_height="wrap_content" + android:visibility="gone" android:text="@string/device_limit" android:textAppearance="@style/TextAppearance.AppCompat.Body2"/> @@ -113,6 +114,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/fields_spacing" + android:visibility="gone" tools:text="Device Limit" /> <TextView |