Skip to content

Commit c118a13

Browse files
authored
Add missing semantics flag for embedder (flutter#25932)
Add in flags kFlutterSemanticsFlagIsSlider and kFlutterSemanticsFlagIsKeyboardKey from SemanticsFlags.
1 parent cf18983 commit c118a13

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

shell/platform/embedder/embedder.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,10 @@ typedef enum {
210210
kFlutterSemanticsFlagIsFocusable = 1 << 21,
211211
/// Whether the semantics node represents a link.
212212
kFlutterSemanticsFlagIsLink = 1 << 22,
213+
/// Whether the semantics node represents a slider.
214+
kFlutterSemanticsFlagIsSlider = 1 << 23,
215+
/// Whether the semantics node represents a keyboard key.
216+
kFlutterSemanticsFlagIsKeyboardKey = 1 << 24,
213217
} FlutterSemanticsFlag;
214218

215219
typedef enum {

0 commit comments

Comments
 (0)