Add a display server and graphical user interface #38

Merged
asleepymoon merged 103 commits from display-server into main 2023-09-20 18:49:21 +00:00
Showing only changes of commit 2643f050eb - Show all commits

View File

@ -43,7 +43,7 @@ namespace ui
Vector<Widget*> m_widgets;
AdjustHeight m_adjust_height;
AdjustWidth m_adjust_width;
int m_used_width;
int m_used_width { 0 };
};
class VerticalLayout final : public Widget
@ -64,6 +64,6 @@ namespace ui
Vector<Widget*> m_widgets;
AdjustHeight m_adjust_height;
AdjustWidth m_adjust_width;
int m_used_height;
int m_used_height { 0 };
};
}