GuiTabular: add missing connections

(cherry picked from commit 2bf3124f25)
This commit is contained in:
Juergen Spitzmueller 2024-07-14 14:20:05 +02:00
parent 3c0e6b72a7
commit d15f4fe5ec
2 changed files with 9 additions and 0 deletions

View File

@ -67,6 +67,12 @@ GuiTabular::GuiTabular(QWidget * parent)
bottomspaceUnitLC->setCurrentItem(Length::defaultUnit());
interlinespaceUnitLC->setCurrentItem(Length::defaultUnit());
connect(topspaceCO, SIGNAL(currentIndexChanged(int)),
this, SLOT(checkEnabled()));
connect(bottomspaceCO, SIGNAL(currentIndexChanged(int)),
this, SLOT(checkEnabled()));
connect(interlinespaceCO, SIGNAL(currentIndexChanged(int)),
this, SLOT(checkEnabled()));
connect(topspaceED, SIGNAL(textEdited(const QString &)),
this, SLOT(checkEnabled()));
connect(topspaceUnitLC, SIGNAL(selectionChanged(lyx::Length::UNIT)),

View File

@ -56,6 +56,9 @@ What's new
- Fix performance problems with references with (very) many authors.
- Enable OK/Apply button in tabular dialog when "Additional Space" combo has
been set to different value.
* INTERNALS