starmath/source/dialog.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 69dfde2d2e42a21444e1a4b18f0a4a1929ac330d Author: Rafael Lima <[email protected]> AuthorDate: Wed Apr 12 16:14:10 2023 +0200 Commit: Adolfo Jayme Barrientos <[email protected]> CommitDate: Tue Apr 18 22:58:06 2023 +0200 tdf#154773 Fix Symbols dialog in dark mode Change-Id: I92029f1d19c7545a4122b125ae69ab5964e562d2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150209 Tested-by: Jenkins Reviewed-by: Heiko Tietze <[email protected]> (cherry picked from commit 2c01d4448a8059b5f335d07347b9e85a0d0031d8) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150564 Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx index e7450727ad61..969466d6f06d 100644 --- a/starmath/source/dialog.cxx +++ b/starmath/source/dialog.cxx @@ -61,8 +61,8 @@ void lclGetSettingColors(Color& rBackgroundColor, Color& rTextColor) } else { - rBackgroundColor = COL_WHITE; - rTextColor = COL_BLACK; + rBackgroundColor = rStyleSettings.GetFaceColor(); + rTextColor = rStyleSettings.GetLabelTextColor(); } }
