1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 03:15:08 +00:00

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

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);