starmath/source/dialog.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 2c01d4448a8059b5f335d07347b9e85a0d0031d8
Author:     Rafael Lima <rafael.palma.l...@gmail.com>
AuthorDate: Wed Apr 12 16:14:10 2023 +0200
Commit:     Rafael Lima <rafael.palma.l...@gmail.com>
CommitDate: Tue Apr 18 14:06: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 <heiko.tie...@documentfoundation.org>

diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx
index 76dd40a13268..ecb68dbf2d63 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();
     }
 }
 

Reply via email to