From: rnv Date: Mon, 11 Apr 2011 12:42:27 +0000 (+0000) Subject: Fix for the "21222: SMESH EDF: Impossible to set a threshold value in the filter... X-Git-Tag: V6_3_0a1~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=022168f9e6279561d0fea7d14c353bbab7c29e4c;p=modules%2Fsmesh.git Fix for the "21222: SMESH EDF: Impossible to set a threshold value in the filter dialog" issue. --- 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); } //=======================================================================