diff options
author | andreas kainz <kainz.a@gmail.com> | 2020-09-23 08:05:54 +0200 |
---|---|---|
committer | Andreas Kainz <kainz.a@gmail.com> | 2020-09-23 10:19:50 +0200 |
commit | 4f2daa1cc683a3e3abbca6e15aa168add414eeff (patch) | |
tree | eef08ce44c3e4aaff135b36a79406917cb94256e /sc/source | |
parent | 02ab482b8fb8faa04e62f97d952f7e98cf0490fb (diff) |
tdf#102967 remove line at the top of calc header
Change-Id: I9c2cb9d2a87addb42f531a58f29cda351175a39e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103224
Tested-by: Jenkins
Reviewed-by: Andreas Kainz <kainz.a@gmail.com>
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/app/inputwin.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index d746b464ab78..5255e17e3c31 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -441,11 +441,11 @@ void ScInputWindow::Paint(vcl::RenderContext& rRenderContext, const tools::Recta if (!comphelper::LibreOfficeKit::isActive()) { // draw a line at the bottom to distinguish that from the grid - const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); - rRenderContext.SetLineColor(rStyleSettings.GetShadowColor()); - Size aSize = GetSizePixel(); - rRenderContext.DrawLine(Point(0, aSize.Height() - 1), - Point(aSize.Width() - 1, aSize.Height() - 1)); + // const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); + // rRenderContext.SetLineColor(rStyleSettings.GetShadowColor()); + // Size aSize = GetSizePixel(); + // rRenderContext.DrawLine(Point(0, aSize.Height() - 1), + // Point(aSize.Width() - 1, aSize.Height() - 1)); } } |