Unverified Commit 356355c9 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8035 from DonLakeFlyer/TuningCrash

Advanced tuning hidden due to crash from Qt problem
parents 2e2eacac 6cfd98d8
......@@ -64,7 +64,9 @@ SetupPage {
ExclusiveGroup { id: returnAltRadioGroup }
Component.onCompleted: {
showAdvanced = !ScreenTools.isMobile
// Advanced tuning is hacked out due to Qt crash with Qml Charts and a QGuiApplication
//showAdvanced = !ScreenTools.isMobile
// Qml Sliders have a strange behavior in which they first set Slider::value to some internal
// setting and then set Slider::value to the bound properties value. If you have an onValueChanged
// handler which updates your property with the new value, this first value change will trash
......
......@@ -29,7 +29,8 @@ SetupPage {
width: availableWidth
Component.onCompleted: {
showAdvanced = !ScreenTools.isMobile
// Advanced tuning is hacked out due to Qt crash with Qml Charts and a QGuiApplication
//showAdvanced = !ScreenTools.isMobile
}
FactPanelController {
......
......@@ -29,7 +29,8 @@ SetupPage {
width: availableWidth
Component.onCompleted: {
showAdvanced = !ScreenTools.isMobile
// Advanced tuning is hacked out due to Qt crash with Qml Charts and a QGuiApplication
//showAdvanced = !ScreenTools.isMobile
}
FactPanelController {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment