LibGUI: GTableView paints itself completely, no need for auto filling.

This commit is contained in:
Andreas Kling 2019-02-28 13:57:41 +01:00
parent 827ec99a8f
commit 7eb42b5ffb
Notes: sideshowbarker 2024-07-19 15:35:46 +09:00

View File

@ -6,6 +6,7 @@
GTableView::GTableView(GWidget* parent)
: GWidget(parent)
{
set_fill_with_background_color(false);
m_scrollbar = new GScrollBar(Orientation::Vertical, this);
m_scrollbar->set_step(4);
m_scrollbar->set_big_step(30);