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

Commit 7588fa68 authored by Daniel Norman's avatar Daniel Norman Committed by Automerger Merge Worker
Browse files

Merge "Include all enabled services when FEEDBACK_ALL_MASK." into qt-dev am: 6505ed16

parents f3c6684b 6505ed16
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -673,7 +673,8 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub
            final List<AccessibilityServiceInfo> result = new ArrayList<>(serviceCount);
            for (int i = 0; i < serviceCount; ++i) {
                final AccessibilityServiceConnection service = services.get(i);
                if ((service.mFeedbackType & feedbackType) != 0) {
                if ((service.mFeedbackType & feedbackType) != 0
                        || feedbackType == AccessibilityServiceInfo.FEEDBACK_ALL_MASK) {
                    result.add(service.getServiceInfo());
                }
            }