[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - vcl/ios
Tor Lillqvist (via logerrit)
logerrit at kemper.freedesktop.org
Mon Sep 16 12:36:31 UTC 2019
vcl/ios/iosinst.cxx | 6 ++++++
1 file changed, 6 insertions(+)
New commits:
commit 1e7a3f82324c3b855c2b3c1f8d4dec73c5162806
Author: Tor Lillqvist <tml at collabora.com>
AuthorDate: Tue Aug 20 16:10:51 2019 +0300
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Mon Sep 16 14:35:56 2019 +0200
tdf#126964: Set background colours to white in IosSalFrame::UpdateSettings()
Change-Id: I92110a7a501571d7fd707dc33502ff553f02ae5e
Reviewed-on: https://gerrit.libreoffice.org/77823
Reviewed-by: Tor Lillqvist <tml at collabora.com>
Tested-by: Tor Lillqvist <tml at collabora.com>
(cherry picked from commit e84c42ee32d1a23729c65b534c4418e2043f706d)
Reviewed-on: https://gerrit.libreoffice.org/78994
diff --git a/vcl/ios/iosinst.cxx b/vcl/ios/iosinst.cxx
index cddcdf743840..cae091bd1d88 100644
--- a/vcl/ios/iosinst.cxx
+++ b/vcl/ios/iosinst.cxx
@@ -123,6 +123,12 @@ public:
aStyleSet.SetTabFont( aFont );
aStyleSet.SetGroupFont( aFont );
+ Color aBackgroundColor( 0xff, 0xff, 0xff );
+ aStyleSet.BatchSetBackgrounds( aBackgroundColor, false );
+ aStyleSet.SetMenuColor( aBackgroundColor );
+ aStyleSet.SetMenuBarColor( aBackgroundColor );
+ aStyleSet.SetDialogColor( aBackgroundColor );
+
rSettings.SetStyleSettings( aStyleSet );
}
};
More information about the Libreoffice-commits
mailing list