diff options
author | andreas kainz <kainz.a@gmail.com> | 2020-09-15 22:40:44 +0200 |
---|---|---|
committer | Andreas Kainz <kainz.a@gmail.com> | 2020-09-16 17:07:48 +0200 |
commit | 1349e66ef629bfc8aed23434108339bdba5013bb (patch) | |
tree | 35134274cb4f5175d95049d29d3e2f4bb4fc5887 /vcl/source | |
parent | 8f098afced6e974ef83c4d9de988822cb3854c9a (diff) |
remove border line from sidebar
Change-Id: I520b6a5eaec5db065dc122b3e97861548347791e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102825
Tested-by: Jenkins
Reviewed-by: Andreas Kainz <kainz.a@gmail.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/splitwin.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/vcl/source/window/splitwin.cxx b/vcl/source/window/splitwin.cxx index 66d64e7fd343..58b4c01921a6 100644 --- a/vcl/source/window/splitwin.cxx +++ b/vcl/source/window/splitwin.cxx @@ -181,10 +181,6 @@ void SplitWindow::ImplDrawBorder(vcl::RenderContext& rRenderContext) switch (meAlign) { case WindowAlign::Bottom: - rRenderContext.SetLineColor(rStyleSettings.GetShadowColor()); - rRenderContext.DrawLine(Point(0, 0), Point(nDX - 1, 0)); - rRenderContext.DrawLine(Point(0, nDY - 2), Point(nDX - 1, nDY - 2)); - rRenderContext.SetLineColor(rStyleSettings.GetLightColor()); rRenderContext.DrawLine(Point(0, 1), Point(nDX - 1, 1)); rRenderContext.DrawLine(Point(0, nDY - 1), Point(nDX - 1, nDY - 1)); |