mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
Fix for bug #11926
Change comobox signal to user interaction only to avoid problems with "Apply changes immediately" aka "Immediate Apply". (See https://doc.qt.io/qt-5/qcombobox.html#currentIndexChanged and https://doc.qt.io/qt-5/qcombobox.html#activated.)
(cherry picked from commit d3a04c089b
)
This commit is contained in:
parent
fbdb42ac95
commit
e0840677e3
@ -218,14 +218,14 @@ GuiCharacter::GuiCharacter(GuiView & lv)
|
||||
connect(autoapplyCB, SIGNAL(stateChanged(int)), this,
|
||||
SLOT(slotAutoApply()));
|
||||
|
||||
connect(ulineCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||
connect(strikeCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||
connect(sizeCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||
connect(familyCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||
connect(seriesCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||
connect(shapeCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||
connect(colorCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||
connect(langCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||
connect(ulineCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
||||
connect(strikeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
||||
connect(sizeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
||||
connect(familyCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
||||
connect(seriesCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
||||
connect(shapeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
||||
connect(colorCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
||||
connect(langCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
||||
|
||||
family = familyData();
|
||||
series = seriesData();
|
||||
|
@ -26,6 +26,8 @@ What's new
|
||||
|
||||
- Add support for the doublestroke package in mathed (bug 11887).
|
||||
|
||||
- Fix behavior of text style dialog when "Immediate Apply" is checked (bug 11926).
|
||||
|
||||
- Focus keyword field in Thesaurus dialog.
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user