Auto hide FAB with accessibility

This commit is contained in:
M66B
2024-06-15 22:49:40 +02:00
parent 1cba1ad952
commit a7c5e5de57
2 changed files with 2 additions and 6 deletions

View File

@@ -7824,7 +7824,7 @@ public class FragmentMessages extends FragmentBase
if (viewType == AdapterMessage.ViewType.UNIFIED ||
viewType == AdapterMessage.ViewType.FOLDER)
if (auto_hide_answer && scrolling && !accessibility)
if (auto_hide_answer && scrolling)
fabCompose.hide();
else
fabCompose.show();
@@ -7835,7 +7835,7 @@ public class FragmentMessages extends FragmentBase
return;
int expanded = (values.containsKey("expanded") ? values.get("expanded").size() : 0);
if (auto_hide_answer && scrolling && !accessibility)
if (auto_hide_answer && scrolling)
fabReply.hide();
else {
if (expanded == 1) {