diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-01-28 21:21:19 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-01-29 09:08:40 +0100 |
commit | 6d6e80435fd7f71342c429a67759a7b7b280cc55 (patch) | |
tree | 58503053e1348e551f5e58d4f393a9791ef96981 /sw | |
parent | 000ba228db56c28b6e2a42bf6adefe6ca6cfdffb (diff) |
sw: add UI for semi-transparent text
Somewhat surprisingly the test passed without the fix, i.e. the uitest
operated happily on a hidden widget; so explicitly assert that it's
visible.
Change-Id: I321c7e0e3cb2d67a07724523c885d50577a116a5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87656
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/chrdlg/chardlg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/ui/chrdlg/chardlg.cxx b/sw/source/ui/chrdlg/chardlg.cxx index 95be6a1c4bf9..d3b779b9de7f 100644 --- a/sw/source/ui/chrdlg/chardlg.cxx +++ b/sw/source/ui/chrdlg/chardlg.cxx @@ -112,7 +112,8 @@ void SwCharDlg::PageCreated(const OString& rId, SfxTabPage &rPage) } else if (rId == "fonteffects") { - aSet.Put (SfxUInt32Item(SID_FLAG_TYPE,SVX_PREVIEW_CHARACTER|SVX_ENABLE_FLASH)); + aSet.Put(SfxUInt32Item(SID_FLAG_TYPE, SVX_PREVIEW_CHARACTER | SVX_ENABLE_FLASH + | SVX_ENABLE_CHAR_TRANSPARENCY)); rPage.PageCreated(aSet); } else if (rId == "position") |