vcl/osx/salframe.cxx | 1 + vcl/source/window/toolbox.cxx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-)
New commits: commit 965ffbf0c22a1ad780ad92e2e7c54522d9e6a7d0 Author: Caolán McNamara <[email protected]> AuthorDate: Wed Nov 2 10:50:15 2022 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Wed Nov 2 12:36:57 2022 +0100 use a narrower cursor, the wide one feels out of place Change-Id: I2816dc162986cd426654673fefd4e0e0171aeb01 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142162 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx index b820ef338136..dee0ada8e6a1 100644 --- a/vcl/osx/salframe.cxx +++ b/vcl/osx/salframe.cxx @@ -1358,6 +1358,7 @@ SAL_WNODEPRECATED_DECLARATIONS_POP aStyleSettings.SetTabHighlightTextColor(aAlternateSelectedControlTextColor); aStyleSettings.SetCursorBlinkTime( mnBlinkCursorDelay ); + aStyleSettings.SetCursorSize(1); // no mnemonics on macOS aStyleSettings.SetOptions( aStyleSettings.GetOptions() | StyleSettingsOptions::NoMnemonics ); commit 9762f8d30e30b6e79d18517a14d844aac34b02a0 Author: Caolán McNamara <[email protected]> AuthorDate: Wed Nov 2 10:08:42 2022 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Wed Nov 2 12:36:43 2022 +0100 color is meant to be the same as the popups color which is FaceColor and not FaceGradientColor as far as I can see Change-Id: Icc3b874ac2e31845df2f017446dc85efd9aaed59 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142161 Tested-by: Caolán McNamara <[email protected]> Reviewed-by: Caolán McNamara <[email protected]> diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx index c0375583350c..5e96911c8f20 100644 --- a/vcl/source/window/toolbox.cxx +++ b/vcl/source/window/toolbox.cxx @@ -536,7 +536,7 @@ void ToolBox::ImplErase(vcl::RenderContext& rRenderContext, const tools::Rectang rRenderContext.SetLineColor(); if (bHasOpenPopup) // choose the same color as the popup will use - rRenderContext.SetFillColor(rRenderContext.GetSettings().GetStyleSettings().GetFaceGradientColor()); + rRenderContext.SetFillColor(rRenderContext.GetSettings().GetStyleSettings().GetFaceColor()); else rRenderContext.SetFillColor(rRenderContext.GetSettings().GetStyleSettings().GetWindowColor());
