LFUN_TEXTSTYLE_UPDATE: Do not force any unspecified settings.

Fixes: #11111 (yay!)
This commit is contained in:
Juergen Spitzmueller 2018-12-27 15:29:23 +01:00
parent 712b9c5457
commit 2f9876a410

View File

@ -2390,7 +2390,7 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
// Set the freefont using the contents of \param data dispatched from
// the frontends and apply it at the current cursor location.
case LFUN_TEXTSTYLE_UPDATE: {
Font font;
Font font(ignore_font, ignore_language);
bool toggle;
if (font.fromString(to_utf8(cmd.argument()), toggle)) {
docstring const props = font.stateText(&bv->buffer().params(), true);