mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
LibGUI: Let the table view tell HeaderView about the min. section size
Previously HeaderView would just assume that each column or row could have a minimum size of 2. This makes it so that AbstractTableView subclasses can provide a new minimum value for a specific column.
This commit is contained in:
@@ -179,6 +179,16 @@ void AbstractTableView::set_column_width(int column, int width)
|
||||
column_header().set_section_size(column, width);
|
||||
}
|
||||
|
||||
int AbstractTableView::minimum_column_width(int)
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
|
||||
int AbstractTableView::minimum_row_height(int)
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
|
||||
Gfx::TextAlignment AbstractTableView::column_header_alignment(int column_index) const
|
||||
{
|
||||
if (!model())
|
||||
|
||||
Reference in New Issue
Block a user