mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 22:14:35 +00:00
GuiTabular: add missing connections
(cherry picked from commit 2bf3124f25
)
This commit is contained in:
parent
3c0e6b72a7
commit
d15f4fe5ec
@ -67,6 +67,12 @@ GuiTabular::GuiTabular(QWidget * parent)
|
|||||||
bottomspaceUnitLC->setCurrentItem(Length::defaultUnit());
|
bottomspaceUnitLC->setCurrentItem(Length::defaultUnit());
|
||||||
interlinespaceUnitLC->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 &)),
|
connect(topspaceED, SIGNAL(textEdited(const QString &)),
|
||||||
this, SLOT(checkEnabled()));
|
this, SLOT(checkEnabled()));
|
||||||
connect(topspaceUnitLC, SIGNAL(selectionChanged(lyx::Length::UNIT)),
|
connect(topspaceUnitLC, SIGNAL(selectionChanged(lyx::Length::UNIT)),
|
||||||
|
@ -56,6 +56,9 @@ What's new
|
|||||||
|
|
||||||
- Fix performance problems with references with (very) many authors.
|
- 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
|
* INTERNALS
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user