Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 189df671 authored by Jorge Ruesga's avatar Jorge Ruesga
Browse files

Gallery: Fix logic typo



Change-Id: I340b61d60e5f641e87dfddb94e2e147a15e30891
Signed-off-by: default avatarJorge Ruesga <jorge@ruesga.com>
parent ca78969f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -163,7 +163,7 @@ public class MenuExecutor {
        boolean supportTrim = (supported & MediaObject.SUPPORT_TRIM) != 0;
        boolean supportShare = (supported & MediaObject.SUPPORT_SHARE) != 0;
        boolean supportSetAs = (supported & MediaObject.SUPPORT_SETAS) != 0;
        boolean supportShowOnMap = (supported & MediaObject.SUPPORT_SHOW_ON_MAP) != 0 &
        boolean supportShowOnMap = (supported & MediaObject.SUPPORT_SHOW_ON_MAP) != 0 &&
                                   GalleryUtils.isGeolocationViewAvailable(context);
        boolean supportCache = (supported & MediaObject.SUPPORT_CACHE) != 0;
        boolean supportEdit = (supported & MediaObject.SUPPORT_EDIT) != 0;