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

Taskbar: Replace TaskbarWidget with a simple GFrame.

There's no need for a custom widget here, at least not now.
This commit is contained in:
Andreas Kling 2019-04-08 17:17:16 +02:00
parent 6d5a54690e
commit 93a4a4c597
5 changed files with 11 additions and 42 deletions

View file

@ -4,7 +4,7 @@
class GFrame : public GWidget {
public:
explicit GFrame(GWidget* parent);
explicit GFrame(GWidget* parent = nullptr);
virtual ~GFrame() override;
enum Shadow { Plain, Raised, Sunken };