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

VisualBuilder: Display read-only propery values in gray.

This commit is contained in:
Andreas Kling 2019-04-11 21:53:39 +02:00
parent 383b2efc1f
commit 34dd4fcaf1
2 changed files with 10 additions and 2 deletions

View file

@ -82,6 +82,6 @@ GWidget* VBWidgetRegistry::build_gwidget(VBWidgetType type, GWidget* parent, Vec
property->set_readonly(is_readonly);
properties.append(move(property));
};
add_property("ClassName", to_class_name(type), true);
add_property("class", to_class_name(type), true);
return gwidget;
}