diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-28 20:15:13 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-28 20:15:13 +0100 |
commit | 5d72cf5a3fcd739426c9b6ccfa5afcdd93afb4d4 (patch) | |
tree | ba38f5743beb59c7ef349922daf280c4e3103993 /LibGUI/GTableView.cpp | |
parent | f939fb7eb7207f62d3e82f14e5532bb5af381cda (diff) | |
download | serenity-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.cpp | 2 |
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() |