summaryrefslogtreecommitdiff
path: root/LibGUI/GTableView.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-28 20:15:13 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-28 20:15:13 +0100
commit5d72cf5a3fcd739426c9b6ccfa5afcdd93afb4d4 (patch)
treeba38f5743beb59c7ef349922daf280c4e3103993 /LibGUI/GTableView.cpp
parentf939fb7eb7207f62d3e82f14e5532bb5af381cda (diff)
downloadserenity-5d72cf5a3fcd739426c9b6ccfa5afcdd93afb4d4.zip
LibGUI: Improve GFrame's look for Container shapes.
This is now starting to look like a proper container. Very nice :^)
Diffstat (limited to 'LibGUI/GTableView.cpp')
-rw-r--r--LibGUI/GTableView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GTableView.cpp b/LibGUI/GTableView.cpp
index 2f3c6e6ea8..0e2f66be59 100644
--- a/LibGUI/GTableView.cpp
+++ b/LibGUI/GTableView.cpp
@@ -9,7 +9,7 @@ GTableView::GTableView(GWidget* parent)
{
set_frame_shape(GFrame::Shape::Container);
set_frame_shadow(GFrame::Shadow::Sunken);
- set_frame_thickness(1);
+ set_frame_thickness(2);
}
GTableView::~GTableView()