]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Correction for Jenkins: number of symbols should be less than 100
authornds <nds@opencascade.com>
Mon, 29 May 2017 12:04:43 +0000 (15:04 +0300)
committernds <nds@opencascade.com>
Mon, 29 May 2017 12:04:43 +0000 (15:04 +0300)
src/XGUI/XGUI_OperationMgr.cpp

index 17e7ae51f46eb799fc19eca9da2b60e29d46cdfc..728bd16411c0765e1d92ff4ba5a4dbe5020c6db1 100644 (file)
@@ -604,7 +604,8 @@ bool XGUI_OperationMgr::onKeyReleased(QObject *theObject, QKeyEvent* theEvent)
       ModuleBase_Operation* aOperation = currentOperation();
       if (aOperation) {
         ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
-        if (aPanel) { // check for case when the operation is started but property panel is not filled
+        if (aPanel) {
+          // check for case when the operation is started but property panel is not filled
           XGUI_PropertyPanel* aPP = dynamic_cast<XGUI_PropertyPanel*>(aPanel);
           aPP->focusNextPrevChild_(theEvent->key() == Qt::Key_Tab);
           isAccepted = true;