mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 06:09:08 +00:00
LibGUI: Implement column_headers_visible in AbstractTableView
This was declared but not defined. :yakfusion:
This commit is contained in:
parent
33887917e4
commit
bfb587f29d
Notes:
sideshowbarker
2024-07-17 14:22:15 +09:00
Author: https://github.com/kleinesfilmroellchen
Commit: bfb587f29d
Pull-request: https://github.com/SerenityOS/serenity/pull/13516
Issue: https://github.com/SerenityOS/serenity/issues/65
1 changed files with 5 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue