mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
GuiTabular.cpp: apply immediately for all edit fields in the table dialog as discusses in #7001
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35953 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
79811671e9
commit
e882f797bf
@ -55,19 +55,19 @@ GuiTabular::GuiTabular(QWidget * parent)
|
||||
|
||||
widthUnitCB->setCurrentItem(Length::defaultUnit());
|
||||
|
||||
connect(topspaceED, SIGNAL(returnPressed()),
|
||||
connect(topspaceED, SIGNAL(textEdited(QString)),
|
||||
this, SLOT(checkEnabled()));
|
||||
connect(topspaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
|
||||
this, SLOT(checkEnabled()));
|
||||
connect(topspaceCO, SIGNAL(activated(int)),
|
||||
this, SLOT(checkEnabled()));
|
||||
connect(bottomspaceED, SIGNAL(returnPressed()),
|
||||
connect(bottomspaceED, SIGNAL(textEdited(QString)),
|
||||
this, SLOT(checkEnabled()));
|
||||
connect(bottomspaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
|
||||
this, SLOT(checkEnabled()));
|
||||
connect(bottomspaceCO, SIGNAL(activated(int)),
|
||||
this, SLOT(checkEnabled()));
|
||||
connect(interlinespaceED, SIGNAL(returnPressed()),
|
||||
connect(interlinespaceED, SIGNAL(textEdited(QString)),
|
||||
this, SLOT(checkEnabled()));
|
||||
connect(interlinespaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
|
||||
this, SLOT(checkEnabled()));
|
||||
|
Loading…
Reference in New Issue
Block a user