From: Juergen Spitzmueller Date: Sun, 13 Mar 2022 09:26:26 +0000 (+0100) Subject: Fix signal (#12506) X-Git-Tag: 2.4-beta2~781 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a88f67ac6018e9bb10650ae230a1e3437d3821ae;p=lyx.git Fix signal (#12506) --- diff --git a/src/frontends/qt/GuiBox.cpp b/src/frontends/qt/GuiBox.cpp index ddd577534e..bda71a68ef 100644 --- a/src/frontends/qt/GuiBox.cpp +++ b/src/frontends/qt/GuiBox.cpp @@ -118,7 +118,7 @@ GuiBox::GuiBox(QWidget * parent) : InsetParamsWidget(parent) connect(widthED, SIGNAL(textChanged(QString)), this, SIGNAL(changed())); connect(widthUnitsLC, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SIGNAL(changed())); - connect(valignCO, SIGNAL(highlighted(QString)), this, SIGNAL(changed())); + connect(valignCO, SIGNAL(activated(int)), this, SIGNAL(changed())); connect(heightED, SIGNAL(textChanged(QString)), this, SIGNAL(changed())); connect(heightUnitsLC, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SIGNAL(changed()));