]> git.lyx.org Git - lyx.git/commitdiff
Fix signal (#12506)
authorJuergen Spitzmueller <spitz@lyx.org>
Sun, 13 Mar 2022 09:26:26 +0000 (10:26 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Sun, 13 Mar 2022 09:26:26 +0000 (10:26 +0100)
src/frontends/qt/GuiBox.cpp

index ddd577534eb71e0f8b1b60c28b26a4c630686224..bda71a68ef6716519c0bdb4174728f6a38d4cd80 100644 (file)
@@ -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()));