Commit 844e6780 authored by DonLakeFlyer's avatar DonLakeFlyer

Fix toolstrip recalc

parent 5cc59734
...@@ -39,7 +39,7 @@ Rectangle { ...@@ -39,7 +39,7 @@ Rectangle {
// whether to show or hide the optional elements on the fly. // whether to show or hide the optional elements on the fly.
property bool _showOptionalElements: true property bool _showOptionalElements: true
property bool _needRecalc: true property bool _needRecalc: false
Component.onCompleted: recalcShowOptionalElements() Component.onCompleted: recalcShowOptionalElements()
...@@ -54,7 +54,6 @@ Rectangle { ...@@ -54,7 +54,6 @@ Rectangle {
onDefaultFontPixelHeightChanged: recalcShowOptionalElements() onDefaultFontPixelHeightChanged: recalcShowOptionalElements()
} }
/*
onHeightChanged: { onHeightChanged: {
if (_needRecalc) { if (_needRecalc) {
_needRecalc = false _needRecalc = false
...@@ -63,18 +62,13 @@ Rectangle { ...@@ -63,18 +62,13 @@ Rectangle {
} }
} }
} }
*/
function recalcShowOptionalElements() { function recalcShowOptionalElements() {
if (_showOptionalElements) { if (maxHeight > 0) {
if (maxHeight && height > maxHeight) { _needRecalc = false
_showOptionalElements = false _showOptionalElements = height <= maxHeight
}
} else {
_needRecalc = true _needRecalc = true
_showOptionalElements = true
} }
} }
QGCPalette { id: qgcPal } QGCPalette { id: qgcPal }
......
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