1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:07:44 +00:00

ThemeEditor: Convert the widget-preview layout to GML

This has the nice bonus of fixing the appearance of the status bar. :^)
This commit is contained in:
Sam Atkins 2022-05-10 14:43:36 +01:00 committed by Andreas Kling
parent 4edc33b4a6
commit 48122e29c3
3 changed files with 33 additions and 32 deletions

View file

@ -9,6 +9,7 @@ compile_gml(ColorProperty.gml ColorPropertyGML.h color_property_gml)
compile_gml(FlagProperty.gml FlagPropertyGML.h flag_property_gml)
compile_gml(MetricProperty.gml MetricPropertyGML.h metric_property_gml)
compile_gml(PathProperty.gml PathPropertyGML.h path_property_gml)
compile_gml(Previews/WindowPreview.gml WindowPreviewGML.h window_preview_gml)
set(SOURCES
main.cpp
@ -20,6 +21,7 @@ set(SOURCES
MetricPropertyGML.h
PathPropertyGML.h
ThemeEditorGML.h
WindowPreviewGML.h
)
serenity_app(ThemeEditor ICON app-theme-editor)