Skip to content

Commit

Permalink
Add missing semantics flag for embedder (flutter#25932)
Browse files Browse the repository at this point in the history
Add in flags kFlutterSemanticsFlagIsSlider and kFlutterSemanticsFlagIsKeyboardKey
from SemanticsFlags.
  • Loading branch information
yyzhong-g authored May 13, 2021
1 parent cf18983 commit c118a13
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions shell/platform/embedder/embedder.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,10 @@ typedef enum {
kFlutterSemanticsFlagIsFocusable = 1 << 21,
/// Whether the semantics node represents a link.
kFlutterSemanticsFlagIsLink = 1 << 22,
/// Whether the semantics node represents a slider.
kFlutterSemanticsFlagIsSlider = 1 << 23,
/// Whether the semantics node represents a keyboard key.
kFlutterSemanticsFlagIsKeyboardKey = 1 << 24,
} FlutterSemanticsFlag;

typedef enum {
Expand Down

0 comments on commit c118a13

Please sign in to comment.