diff --git a/Userland/Applications/Spreadsheet/HelpWindow.cpp b/Userland/Applications/Spreadsheet/HelpWindow.cpp index eafe74c65e5..811ce6034a5 100644 --- a/Userland/Applications/Spreadsheet/HelpWindow.cpp +++ b/Userland/Applications/Spreadsheet/HelpWindow.cpp @@ -74,7 +74,8 @@ HelpWindow::HelpWindow(GUI::Window* parent) auto& splitter = widget.add(); auto& left_frame = splitter.add(); left_frame.set_layout(); - left_frame.set_fixed_width(100); + // FIXME: Get rid of the magic number, dynamically calculate initial size based on left frame contents + left_frame.set_preferred_width(100); m_listview = left_frame.add(); m_listview->set_activates_on_selection(true); m_listview->set_model(HelpListModel::create());