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

Commit 5dcfaaf6 authored by Jorge Ruesga's avatar Jorge Ruesga
Browse files

Gallery: Fix logic typo



Change-Id: I4bbd9e63dd3d7b7c980453798a5bacbf1ac836f7
Signed-off-by: default avatarJorge Ruesga <jorge@ruesga.com>
parent 9fb92859
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ public class MenuExecutor {
        boolean supportMute = (supported & MediaObject.SUPPORT_MUTE) != 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;