Kaydet (Commit) 4531b32e authored tarafından Tamás Zolnai's avatar Tamás Zolnai Kaydeden (comit) Andras Timar

tdf#125576: Empty recent characters in special characters dialog...

... for bullet customization

Change-Id: Ica66dcc0d3f379886788d426941b98d170444799
Reviewed-on: https://gerrit.libreoffice.org/73306
Tested-by: Jenkins
Reviewed-by: 's avatarTamás Zolnai <tamas.zolnai@collabora.com>
(cherry picked from commit 7dc6525f)
Reviewed-on: https://gerrit.libreoffice.org/73310Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
üst b6a3d056
......@@ -921,7 +921,11 @@ IMPL_LINK_NOARG(SvxCharacterMap, SearchCharSelectHdl, SvxShowCharSet*, void)
IMPL_LINK_NOARG(SvxCharacterMap, InsertClickHdl, weld::Button&, void)
{
insertCharToDoc(m_aShowChar.GetText());
OUString sChar = m_aShowChar.GetText();
insertCharToDoc(sChar);
// Need to update recent character list, when OK button does not insert
if(!m_xFrame.is())
updateRecentCharacterList(sChar, aFont.GetFamilyName());
m_xDialog->response(RET_OK);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment