From c583888cc9f807292af61b1df0dc5292503ecc06 Mon Sep 17 00:00:00 2001 From: tetektoza Date: Tue, 3 Oct 2023 21:28:28 +0200 Subject: [PATCH] GMLCompiler: Add enum initializer for checkbox_position property This patch adds a enum initializer for checkbox_position property used in .gml files which are parsed by GML compiler. --- Meta/Lagom/Tools/CodeGenerators/GMLCompiler/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/Lagom/Tools/CodeGenerators/GMLCompiler/main.cpp b/Meta/Lagom/Tools/CodeGenerators/GMLCompiler/main.cpp index 46c66711d8..dc7c7b6ded 100644 --- a/Meta/Lagom/Tools/CodeGenerators/GMLCompiler/main.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/GMLCompiler/main.cpp @@ -178,6 +178,7 @@ static ErrorOr> generate_enum_initializer_for(StringView proper { "text_wrapping"sv, "Gfx::TextWrapping"sv }, { "button_style"sv, "Gfx::ButtonStyle"sv }, { "opportunistic_resizee"sv, "GUI::Splitter::OpportunisticResizee"sv }, + { "checkbox_position"sv, "GUI::CheckBox::CheckBoxPosition"sv }, }; auto const& enum_type_name = enum_properties.get(property_name);