diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-28 16:58:29 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-28 16:58:29 +0100 |
commit | 3dc4255eb49a977af29125902dcafff20d246376 (patch) | |
tree | cb09bb919d6b8c0d762106112f79c4db28df127a /LibGUI/GFrame.h | |
parent | 1fc03a7644290da0f15e73181547d90232f1cce5 (diff) | |
download | serenity-3dc4255eb49a977af29125902dcafff20d246376.zip |
LibGUI: Use GFrame to draw the frames around GItemView and GTableView.
Diffstat (limited to 'LibGUI/GFrame.h')
-rw-r--r-- | LibGUI/GFrame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GFrame.h b/LibGUI/GFrame.h index 73ede6190c..f0a2b7138f 100644 --- a/LibGUI/GFrame.h +++ b/LibGUI/GFrame.h @@ -8,7 +8,7 @@ public: virtual ~GFrame() override; enum Shadow { Plain, Raised, Sunken }; - enum Shape { NoFrame, Box, Panel, VerticalLine, HorizontalLine }; + enum Shape { NoFrame, Container, Panel, VerticalLine, HorizontalLine }; int frame_thickness() const { return m_thickness; } void set_frame_thickness(int thickness) { m_thickness = thickness; } |