From 465b58a6dfe40ac13cf3a4bf41d6f22acf77bb4d Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Wed, 6 Oct 2021 18:05:23 +0200 Subject: [PATCH] Check changed status after decimal sep has been edited --- src/frontends/qt/GuiTabular.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontends/qt/GuiTabular.cpp b/src/frontends/qt/GuiTabular.cpp index 9526e9a0e9..ddb6942688 100644 --- a/src/frontends/qt/GuiTabular.cpp +++ b/src/frontends/qt/GuiTabular.cpp @@ -91,6 +91,8 @@ GuiTabular::GuiTabular(QWidget * parent) this, SLOT(checkEnabled())); connect(hAlignCO, SIGNAL(activated(int)), this, SLOT(checkEnabled())); + connect(decimalPointED, SIGNAL(textEdited(const QString &)), + this, SLOT(checkEnabled())); connect(vAlignCO, SIGNAL(activated(int)), this, SLOT(checkEnabled())); connect(multicolumnCB, SIGNAL(clicked()), -- 2.39.2