summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Client/Code/Core/Utility/StudioPreferences.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Client/Code/Core/Utility/StudioPreferences.cpp')
-rw-r--r--src/Authoring/Client/Code/Core/Utility/StudioPreferences.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Authoring/Client/Code/Core/Utility/StudioPreferences.cpp b/src/Authoring/Client/Code/Core/Utility/StudioPreferences.cpp
index c340ff32..f4157e7c 100644
--- a/src/Authoring/Client/Code/Core/Utility/StudioPreferences.cpp
+++ b/src/Authoring/Client/Code/Core/Utility/StudioPreferences.cpp
@@ -452,7 +452,10 @@ void CStudioPreferences::setHelperGridOn(bool showGrid)
bool CStudioPreferences::isAxisHelperOn()
{
- return s_preferences.value(QStringLiteral("VisualAids/ShowAxisHelper"), true).toBool();
+ return false;
+ // Disable axis helper (QT3DS-4122). To be re-enabled (QT3DS-4124), thoroughly tested
+ // and bugs fixed after 2.7 is released.
+ //return s_preferences.value(QStringLiteral("VisualAids/ShowAxisHelper"), true).toBool();
}
void CStudioPreferences::setAxisHelperOn(bool showAxisHelper)