1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

VisualBuilder: Add some more GWidget default properties.

This commit is contained in:
Andreas Kling 2019-04-12 14:47:21 +02:00
parent 8f4c59c276
commit 6f90f41516
5 changed files with 14 additions and 5 deletions

View file

@ -86,5 +86,10 @@ GWidget* VBWidgetRegistry::build_gwidget(VBWidgetType type, GWidget* parent, Vec
add_property("height");
add_property("x");
add_property("y");
add_property("visible");
add_property("enabled");
add_property("tooltip");
add_property("background_color");
add_property("foreground_color");
return gwidget;
}