1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 18:15:07 +00:00

LibGUI: Allow setting widget visibility from JSON GUI spec

This commit is contained in:
Andreas Kling 2020-09-14 13:04:21 +02:00
parent 8a7935a29f
commit 6fc8dedd28

View file

@ -940,6 +940,10 @@ bool Widget::load_from_json(const JsonObject& json)
if (fill_with_background_color.is_bool())
set_fill_with_background_color(fill_with_background_color.to_bool());
auto visible = json.get("visible");
if (visible.is_bool())
set_visible(visible.to_bool());
auto preferred_height = json.get("preferred_height");
if (preferred_height.is_number())
set_preferred_size(preferred_size().width(), preferred_height.to_i32());