From 7eb42b5ffb2f6859da9abc350fd50bd105828647 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 28 Feb 2019 13:57:41 +0100 Subject: [PATCH] LibGUI: GTableView paints itself completely, no need for auto filling. --- LibGUI/GTableView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/LibGUI/GTableView.cpp b/LibGUI/GTableView.cpp index 97e1e8a30f..ca42ab23c3 100644 --- a/LibGUI/GTableView.cpp +++ b/LibGUI/GTableView.cpp @@ -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);