vcl/source/window/splitwin.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit eb513e96584bb90a6133f838def01b0a16558192 Author: Heiko Tietze <[email protected]> AuthorDate: Wed Dec 3 15:40:38 2025 +0100 Commit: Heiko Tietze <[email protected]> CommitDate: Thu Dec 4 09:51:08 2025 +0100 Resolves tdf#169657 - Make the splitwindow buttons more outstanding on hover Change-Id: I24a93f47ae0af87ecd6fb48db6bd611563913d8c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194962 Reviewed-by: Heiko Tietze <[email protected]> Tested-by: Jenkins diff --git a/vcl/source/window/splitwin.cxx b/vcl/source/window/splitwin.cxx index 5c06d8c15be0..0fb784f57b2e 100644 --- a/vcl/source/window/splitwin.cxx +++ b/vcl/source/window/splitwin.cxx @@ -1467,7 +1467,9 @@ void SplitWindow::ImplDrawGrip(vcl::RenderContext& rRenderContext, const tools:: if (rRect.Contains(GetPointerPosPixel())) { - vcl::RenderTools::DrawSelectionBackground(rRenderContext, *this, rRect, 2, false, false, false); + rRenderContext.SetLineColor(rStyleSettings.GetHighlightColor()); + rRenderContext.SetFillColor(rStyleSettings.GetHighlightColor()); + rRenderContext.DrawRect(rRect); aColor = rStyleSettings.GetDarkShadowColor(); }
