1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

LibGUI: Update AbstractTableView row header sizes on set_row_height()

This commit is contained in:
Andreas Kling 2020-08-26 20:50:54 +02:00
parent 368dc8ad08
commit 8cc2a55cff

View file

@ -380,7 +380,7 @@ void AbstractTableView::set_row_height(int height)
return;
m_row_height = height;
update_content_size();
update_row_sizes();
}
}