From 01ca60187718ef97552488adbd976d7436f98228 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Sat, 5 May 2018 12:35:07 +0200 Subject: [PATCH] Fix BC issue with autoapply --- src/frontends/qt4/GuiCharacter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiCharacter.cpp b/src/frontends/qt4/GuiCharacter.cpp index 349fea2c50..5dd6dde3f6 100644 --- a/src/frontends/qt4/GuiCharacter.cpp +++ b/src/frontends/qt4/GuiCharacter.cpp @@ -527,7 +527,8 @@ void GuiCharacter::paramsToDialog(Font const & font) ? "reset" : toqstr(font.language()->lang()); langCO->setCurrentIndex(findPos2nd(language, lang)); // disable the OK/Apply buttons, since we have no changes yet - bc().setValid(false); + if (!autoapplyCB->isChecked()) + bc().setValid(false); } -- 2.39.2