From 8c63b44e651d3366a486aaacdc7a565eb21f02c4 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 21 Jun 2016 14:13:14 +0300 Subject: [PATCH] Fixed bug editing height increase value. --HG-- branch : develop --- src/app/tape/tmainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/tape/tmainwindow.cpp b/src/app/tape/tmainwindow.cpp index 5a3e4ed90..56209ef35 100644 --- a/src/app/tape/tmainwindow.cpp +++ b/src/app/tape/tmainwindow.cpp @@ -1685,7 +1685,9 @@ void TMainWindow::SaveMHeightIncrease(double value) RefreshData(); search->RefreshList(ui->lineEditFind->text()); + ui->tableWidget->blockSignals(true); ui->tableWidget->selectRow(row); + ui->tableWidget->blockSignals(false); } //---------------------------------------------------------------------------------------------------------------------