From 022168f9e6279561d0fea7d14c353bbab7c29e4c Mon Sep 17 00:00:00 2001 From: rnv Date: Mon, 11 Apr 2011 12:42:27 +0000 Subject: [PATCH] Fix for the "21222: SMESH EDF: Impossible to set a threshold value in the filter dialog" issue. --- src/SMESHGUI/SMESHGUI_FilterDlg.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SMESHGUI/SMESHGUI_FilterDlg.cxx b/src/SMESHGUI/SMESHGUI_FilterDlg.cxx index c12c7ae5f..e54bbb2cc 100755 --- a/src/SMESHGUI/SMESHGUI_FilterDlg.cxx +++ b/src/SMESHGUI/SMESHGUI_FilterDlg.cxx @@ -1605,7 +1605,8 @@ void SMESHGUI_FilterTable::onCriterionChanged (const int row, const int col, con //======================================================================= void SMESHGUI_FilterTable::onCriterionChanged (int row, int col) { - onCriterionChanged(row, col, -1); + if( col == 0 ) + onCriterionChanged(row, col, -1); } //======================================================================= -- 2.30.2