From 3b2668e996927883067a076244f44e47dd491038 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Sun, 3 Jan 2021 02:57:16 +0330 Subject: [PATCH] LibGUI: Register the various BoxLayouts They're not exactly "widgets", but the widget registration registers Core::Objects anyway. --- Libraries/LibGUI/BoxLayout.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Libraries/LibGUI/BoxLayout.cpp b/Libraries/LibGUI/BoxLayout.cpp index 015031208e..0096732af9 100644 --- a/Libraries/LibGUI/BoxLayout.cpp +++ b/Libraries/LibGUI/BoxLayout.cpp @@ -32,6 +32,9 @@ //#define GBOXLAYOUT_DEBUG +REGISTER_WIDGET(GUI, HorizontalBoxLayout) +REGISTER_WIDGET(GUI, VerticalBoxLayout) + namespace GUI { BoxLayout::BoxLayout(Orientation orientation)