GuiTabular: add missing connections

This commit is contained in:
Juergen Spitzmueller 2024-07-14 14:20:05 +02:00
parent ccb3663332
commit 2bf3124f25

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)),