From 0d36863d59c8db5e25daa2265a38bc50eb085d27 Mon Sep 17 00:00:00 2001 From: nds Date: Mon, 29 May 2017 15:04:43 +0300 Subject: [PATCH] Correction for Jenkins: number of symbols should be less than 100 --- src/XGUI/XGUI_OperationMgr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/XGUI/XGUI_OperationMgr.cpp b/src/XGUI/XGUI_OperationMgr.cpp index 17e7ae51f..728bd1641 100644 --- a/src/XGUI/XGUI_OperationMgr.cpp +++ b/src/XGUI/XGUI_OperationMgr.cpp @@ -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(aPanel); aPP->focusNextPrevChild_(theEvent->key() == Qt::Key_Tab); isAccepted = true; -- 2.30.2