diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-28 13:57:41 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-28 13:57:41 +0100 |
commit | 7eb42b5ffb2f6859da9abc350fd50bd105828647 (patch) | |
tree | a0599d0204108748d2d8a311cdbf55bce5ea8620 /LibGUI/GTableView.cpp | |
parent | 827ec99a8f891cb491422f9ef63c8bdbc86054b3 (diff) | |
download | serenity-7eb42b5ffb2f6859da9abc350fd50bd105828647.zip |
LibGUI: GTableView paints itself completely, no need for auto filling.
Diffstat (limited to 'LibGUI/GTableView.cpp')
-rw-r--r-- | LibGUI/GTableView.cpp | 1 |
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); |