Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
format
  • Loading branch information
chunhtai committed Aug 9, 2023
commit 50d6b02c055e257ba5245e7afd83266e9001e8fe
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ private boolean isImportant(SemanticsNode node) {
return true;
}

// Return true if the node has had any user action (not including system actions)
// Return true if the node has had any user action (not including system actions)
return (node.actions & ~systemAction) != 0;
}

Expand Down Expand Up @@ -2167,7 +2167,7 @@ public enum Action {

// Actions that are triggered by Android OS, as opposed to user-triggered actions.
//
// This int is intended to be use in a bitwise comparison.
// This int is intended to be use in a bitwise comparison.
static int systemAction =
Action.DID_GAIN_ACCESSIBILITY_FOCUS.value
& Action.DID_LOSE_ACCESSIBILITY_FOCUS.value
Expand Down