1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 20:25:07 +00:00

LibGUI: Improve GFrame's look for Container shapes.

This is now starting to look like a proper container. Very nice :^)
This commit is contained in:
Andreas Kling 2019-03-28 20:15:13 +01:00
parent f939fb7eb7
commit 5d72cf5a3f
7 changed files with 50 additions and 20 deletions

View file

@ -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()