summaryrefslogtreecommitdiff
path: root/LibGUI/GTableView.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-28 13:57:41 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-28 13:57:41 +0100
commit7eb42b5ffb2f6859da9abc350fd50bd105828647 (patch)
treea0599d0204108748d2d8a311cdbf55bce5ea8620 /LibGUI/GTableView.cpp
parent827ec99a8f891cb491422f9ef63c8bdbc86054b3 (diff)
downloadserenity-7eb42b5ffb2f6859da9abc350fd50bd105828647.zip
LibGUI: GTableView paints itself completely, no need for auto filling.
Diffstat (limited to 'LibGUI/GTableView.cpp')
-rw-r--r--LibGUI/GTableView.cpp1
1 files changed, 1 insertions, 0 deletions
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);