1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:48:11 +00:00

LibGUI: Implement column_headers_visible in AbstractTableView

This was declared but not defined. :yakfusion:
This commit is contained in:
kleines Filmröllchen 2022-04-04 00:08:08 +02:00 committed by Andreas Kling
parent 33887917e4
commit bfb587f29d

View file

@ -387,6 +387,11 @@ void AbstractTableView::set_column_headers_visible(bool visible)
column_header().set_visible(visible);
}
bool AbstractTableView::column_headers_visible() const
{
return column_header().is_visible();
}
void AbstractTableView::did_scroll()
{
AbstractView::did_scroll();