mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:57:44 +00:00
Userland: Make Window::set_main_widget()
non-fallible
This commit is contained in:
parent
c9297126db
commit
3aa49f268c
120 changed files with 144 additions and 133 deletions
|
@ -72,7 +72,7 @@ TaskbarWindow::TaskbarWindow()
|
|||
|
||||
ErrorOr<void> TaskbarWindow::populate_taskbar()
|
||||
{
|
||||
auto main_widget = TRY(set_main_widget<TaskbarWidget>());
|
||||
auto main_widget = set_main_widget<TaskbarWidget>();
|
||||
main_widget->set_layout<GUI::HorizontalBoxLayout>(GUI::Margins { 2, 3, 0, 3 });
|
||||
|
||||
m_quick_launch = TRY(Taskbar::QuickLaunchWidget::create());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue