diff --git a/src/Gui/GestureNavigationStyle.cpp b/src/Gui/GestureNavigationStyle.cpp index 2c975e0320..7b8ceed816 100644 --- a/src/Gui/GestureNavigationStyle.cpp +++ b/src/Gui/GestureNavigationStyle.cpp @@ -1010,7 +1010,7 @@ void GestureNavigationStyle::onSetRotationCenter(SbVec2s cursor){ SbBool ret = NavigationStyle::lookAtPoint(cursor); if(!ret){ this->interactiveCountDec(); //this was in original gesture nav. Not sure what is it needed for --DeepSOIC - Base::Console().Message( + Base::Console().Log( "No object under cursor! Can't set new center of rotation.\n"); } diff --git a/src/Gui/MayaGestureNavigationStyle.cpp b/src/Gui/MayaGestureNavigationStyle.cpp index 2040e0d649..97518e2ed1 100644 --- a/src/Gui/MayaGestureNavigationStyle.cpp +++ b/src/Gui/MayaGestureNavigationStyle.cpp @@ -295,7 +295,7 @@ SbBool MayaGestureNavigationStyle::processSoEvent(const SoEvent * const ev) SbBool ret = NavigationStyle::lookAtPoint(event->getPosition()); if(!ret){ this->interactiveCountDec(); - Base::Console().Message( + Base::Console().Log( "No object under cursor! Can't set new center of rotation.\n"); } } @@ -413,7 +413,7 @@ SbBool MayaGestureNavigationStyle::processSoEvent(const SoEvent * const ev) SbBool ret = NavigationStyle::lookAtPoint(event->getPosition()); if(!ret){ this->interactiveCountDec(); - Base::Console().Message( + Base::Console().Log( "No object under cursor! Can't set new center of rotation.\n"); } }