From a88f67ac6018e9bb10650ae230a1e3437d3821ae Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Sun, 13 Mar 2022 10:26:26 +0100 Subject: [PATCH] Fix signal (#12506) --- src/frontends/qt/GuiBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())); -- 2.39.5