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

Commit 4107c431 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "a11y: disabling accessibility scrolling of the home screen" into ub-launcher3-master

parents c1ff2a9d 52b2b43c
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@ import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
import android.view.accessibility.AccessibilityNodeInfo;
import android.widget.Toast;

import com.android.launcher3.Launcher.LauncherOverlay;
@@ -3477,4 +3478,10 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
            onEndStateTransition();
        }
    }

    @Override
    public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
        super.onInitializeAccessibilityNodeInfo(info);
        info.setScrollable(false);
    }
}