mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 04:37:55 +00:00
LibGUI: Disable the ColumnsView subview in MultiView for now
This is causing FilePicker to log a bunch of debug noise due to the missing support for tree models in SortingProxyModel and it's not helping anyone so let's just disable it. This needs fixing in SortingProxyModel.
This commit is contained in:
@@ -156,9 +156,10 @@ FilePicker::FilePicker(Mode mode, const StringView& file_name, const StringView&
|
||||
toolbar->add_action(m_view->view_as_icons_action());
|
||||
toolbar->add_action(m_view->view_as_table_action());
|
||||
|
||||
// FIXME: Enable this once GUI::ColumnsView doesn't crash when used here.
|
||||
#ifdef MULTIVIEW_WITH_COLUMNSVIEW
|
||||
m_view->view_as_columns_action().set_enabled(false);
|
||||
toolbar->add_action(m_view->view_as_columns_action());
|
||||
#endif
|
||||
|
||||
auto lower_container = vertical_container->add<Widget>();
|
||||
lower_container->set_layout(make<VerticalBoxLayout>());
|
||||
|
||||
Reference in New Issue
Block a user