1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:38:10 +00:00

LibLine: Send over some properties when being inspected

This commit is contained in:
AnotherTest 2020-05-26 15:21:44 +04:30 committed by Andreas Kling
parent d5e9213683
commit e75f7ddb1b
2 changed files with 21 additions and 0 deletions

View file

@ -165,6 +165,9 @@ public:
private:
explicit Editor(Configuration configuration = {});
// ^Core::Object
virtual void save_to(JsonObject&) override;
struct KeyCallback {
KeyCallback(Function<bool(Editor&)> cb)
: callback(move(cb))