From: nds Date: Tue, 16 Dec 2014 06:30:23 +0000 (+0300) Subject: Temp correction X-Git-Tag: before_slalome_7.5.1~11 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1645fa6ee78759da4a75b15a382261d28683f771;p=modules%2Fshaper.git Temp correction --- diff --git a/src/XGUI/XGUI_PropertyPanel.cpp b/src/XGUI/XGUI_PropertyPanel.cpp index c3d200d41..864dad1fe 100644 --- a/src/XGUI/XGUI_PropertyPanel.cpp +++ b/src/XGUI/XGUI_PropertyPanel.cpp @@ -199,7 +199,7 @@ void XGUI_PropertyPanel::activateNextWidget() void XGUI_PropertyPanel::setAcceptEnabled(bool isEnabled) { QPushButton* anOkBtn = findChild(PROP_PANEL_OK); - anOkBtn->setEnabled(isEnabled); + anOkBtn->setEnabled(true);//isEnabled); } void XGUI_PropertyPanel::activateWidget(ModuleBase_ModelWidget* theWidget) @@ -225,7 +225,7 @@ void XGUI_PropertyPanel::activateWidget(ModuleBase_ModelWidget* theWidget) void XGUI_PropertyPanel::setOkEnabled(bool theEnabled) { QPushButton* anOkBtn = findChild(PROP_PANEL_OK); - anOkBtn->setEnabled(theEnabled); + anOkBtn->setEnabled(true);//theEnabled); } bool XGUI_PropertyPanel::isOkEnabled() const