Floating reply all

This commit is contained in:
M66B 2019-08-16 17:35:42 +02:00
parent ec4c83bc3e
commit 9911e871c7
2 changed files with 2 additions and 2 deletions

View File

@ -702,7 +702,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
if (values.containsKey("expanded") && values.get("expanded").size() > 0) {
long id = values.get("expanded").get(0);
Intent reply = new Intent(getContext(), ActivityCompose.class)
.putExtra("action", "reply")
.putExtra("action", "reply_all")
.putExtra("reference", id);
startActivity(reply);
}

View File

@ -185,7 +185,7 @@
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="@dimen/fab_padding"
android:src="@drawable/baseline_reply_24"
android:src="@drawable/baseline_reply_all_24"
android:tint="@color/colorActionForeground"
app:layout_constraintBottom_toTopOf="@+id/seekBar"
app:layout_constraintEnd_toEndOf="parent" />