mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 19:05:07 +00:00
LibGUI: Respect more system theme colors in GToolBar
This commit is contained in:
parent
7b78f63f85
commit
a3257a7c6c
1 changed files with 2 additions and 3 deletions
|
@ -62,7 +62,6 @@ public:
|
||||||
: GWidget(parent)
|
: GWidget(parent)
|
||||||
{
|
{
|
||||||
set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed);
|
set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed);
|
||||||
set_background_color(Color::White);
|
|
||||||
set_preferred_size(8, 22);
|
set_preferred_size(8, 22);
|
||||||
}
|
}
|
||||||
virtual ~SeparatorWidget() override {}
|
virtual ~SeparatorWidget() override {}
|
||||||
|
@ -72,8 +71,8 @@ public:
|
||||||
GPainter painter(*this);
|
GPainter painter(*this);
|
||||||
painter.add_clip_rect(event.rect());
|
painter.add_clip_rect(event.rect());
|
||||||
painter.translate(rect().center().x() - 1, 0);
|
painter.translate(rect().center().x() - 1, 0);
|
||||||
painter.draw_line({ 0, 0 }, { 0, rect().bottom() }, Color::MidGray);
|
painter.draw_line({ 0, 0 }, { 0, rect().bottom() }, SystemColor::ThreedShadow1);
|
||||||
painter.draw_line({ 1, 0 }, { 1, rect().bottom() }, Color::White);
|
painter.draw_line({ 1, 0 }, { 1, rect().bottom() }, SystemColor::ThreedHighlight);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue