diff --git a/Libraries/LibGUI/GWidget.h b/Libraries/LibGUI/GWidget.h index e28f356184..447390c647 100644 --- a/Libraries/LibGUI/GWidget.h +++ b/Libraries/LibGUI/GWidget.h @@ -143,6 +143,8 @@ public: void set_backcolor(const StringView&) { } void set_forecolor(const StringView&) { } + void set_autofill(bool b) { set_fill_with_background_color(b); } + GWindow* window() { if (auto* pw = parent_widget())