Disable possibility to login using matrixId (waiting for design)
This commit is contained in:
parent
cf7de8bb8b
commit
57fca80cbb
|
@ -7,7 +7,7 @@ Features ✨:
|
||||||
Improvements 🙌:
|
Improvements 🙌:
|
||||||
- Invite member(s) to an existing room (#1276)
|
- Invite member(s) to an existing room (#1276)
|
||||||
- Improve notification accessibility with ticker text (#1226)
|
- Improve notification accessibility with ticker text (#1226)
|
||||||
- Support homeserver discovery from MXID (#476)
|
- Support homeserver discovery from MXID (DISABLED: waiting for design) (#476)
|
||||||
|
|
||||||
Bugfix 🐛:
|
Bugfix 🐛:
|
||||||
- Sometimes the same device appears twice in the list of devices of a user (#1329)
|
- Sometimes the same device appears twice in the list of devices of a user (#1329)
|
||||||
|
|
|
@ -16,7 +16,9 @@
|
||||||
style="@style/LoginFormScrollView"
|
style="@style/LoginFormScrollView"
|
||||||
tools:ignore="MissingConstraints">
|
tools:ignore="MissingConstraints">
|
||||||
|
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout style="@style/LoginFormContainer">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
style="@style/LoginFormContainer"
|
||||||
|
android:paddingBottom="@dimen/layout_vertical_margin">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/loginServerTitle"
|
android:id="@+id/loginServerTitle"
|
||||||
|
@ -197,6 +199,7 @@
|
||||||
android:gravity="start"
|
android:gravity="start"
|
||||||
android:text="@string/login_connect_using_matrix_id_notice"
|
android:text="@string/login_connect_using_matrix_id_notice"
|
||||||
android:textAppearance="@style/TextAppearance.Vector.Login.Text.Small"
|
android:textAppearance="@style/TextAppearance.Vector.Login.Text.Small"
|
||||||
|
android:visibility="gone"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/loginServerSubmit" />
|
app:layout_constraintTop_toBottomOf="@+id/loginServerSubmit" />
|
||||||
|
@ -207,6 +210,7 @@
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/login_connect_using_matrix_id_submit"
|
android:text="@string/login_connect_using_matrix_id_submit"
|
||||||
|
android:visibility="gone"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
|
Loading…
Reference in New Issue