Commit b1ede845 authored by Rafael Kellermann Streit's avatar Rafael Kellermann Streit Committed by GitHub

Merge branch 'develop' into fix/possible-blink-in-members-list

parents 346869c4 ed4d274b
...@@ -164,8 +164,8 @@ public class MessageFormLayout extends LinearLayout { ...@@ -164,8 +164,8 @@ public class MessageFormLayout extends LinearLayout {
} }
public void setEnabled(boolean enabled) { public void setEnabled(boolean enabled) {
getEditor().setEnabled(enabled); sendButton.setEnabled(enabled);
composer.findViewById(R.id.button_send).setEnabled(enabled); attachButton.setEnabled(enabled);
} }
public void setEditTextCommitContentListener( public void setEditTextCommitContentListener(
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
app:layout_constraintRight_toLeftOf="@+id/container" app:layout_constraintRight_toLeftOf="@+id/container"
app:layout_constraintBottom_toBottomOf="parent"/> app:layout_constraintBottom_toBottomOf="parent"/>
<android.support.constraint.ConstraintLayout <FrameLayout
android:id="@+id/container" android:id="@+id/container"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
...@@ -53,5 +53,5 @@ ...@@ -53,5 +53,5 @@
android:tint="@color/color_accent" android:tint="@color/color_accent"
app:srcCompat="@drawable/ic_send_black_24dp" app:srcCompat="@drawable/ic_send_black_24dp"
android:background="?attr/selectableItemBackgroundBorderless"/> android:background="?attr/selectableItemBackgroundBorderless"/>
</android.support.constraint.ConstraintLayout> </FrameLayout>
</android.support.constraint.ConstraintLayout> </android.support.constraint.ConstraintLayout>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment