App Manager: Fix hiding fab if flashing not supported

This commit is contained in:
José Rebelo 2025-02-08 17:21:02 +00:00
parent 398e140b31
commit feb5134b5d

View File

@ -435,7 +435,9 @@ public abstract class AbstractAppManagerFragment extends Fragment {
appListFab.hide();
appListFabNew.hide();
} else if (dy < 0) {
appListFab.show();
if (mCoordinator.supportsFlashing()) {
appListFab.show();
}
if (watchfaceDesignerActivity != null) {
appListFabNew.show();
}