mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
App Manager: Fix hiding fab if flashing not supported
This commit is contained in:
+3
-1
@@ -435,7 +435,9 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
|||||||
appListFab.hide();
|
appListFab.hide();
|
||||||
appListFabNew.hide();
|
appListFabNew.hide();
|
||||||
} else if (dy < 0) {
|
} else if (dy < 0) {
|
||||||
appListFab.show();
|
if (mCoordinator.supportsFlashing()) {
|
||||||
|
appListFab.show();
|
||||||
|
}
|
||||||
if (watchfaceDesignerActivity != null) {
|
if (watchfaceDesignerActivity != null) {
|
||||||
appListFabNew.show();
|
appListFabNew.show();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user