Skip to content

Commit

Permalink
more fixes for missing Multi tile
Browse files Browse the repository at this point in the history
  • Loading branch information
kwindrem committed Jun 18, 2024
1 parent 470fcdf commit d853cf2
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 14 deletions.
4 changes: 1 addition & 3 deletions FileSets/VersionIndependent/MultiEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ MbIcon {
horizontalCenter: multi.horizontalCenter; horizontalCenterOffset: -6.5
verticalCenter: multi.verticalCenter; verticalCenterOffset: 8
}
visible: inverterMode.valid
}
Text
{
Expand All @@ -68,7 +67,6 @@ MbIcon {
text: inverterModeText ()
lineHeightMode: Text.FixedHeight
lineHeight: 12
visible: inverterMode.valid
}
function inverterModeText ()
{
Expand Down Expand Up @@ -100,7 +98,7 @@ MbIcon {
}
}
else
return ""
return "?"
}

Column {
Expand Down
4 changes: 1 addition & 3 deletions FileSets/VersionIndependent/MultiEnhancedGP.qml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ MbIcon {
horizontalCenter: multi.horizontalCenter; horizontalCenterOffset: -6.5
verticalCenter: multi.verticalCenter; verticalCenterOffset: 15
}
visible: inverterMode.valid
}
Text
{
Expand All @@ -68,7 +67,6 @@ MbIcon {
text: inverterModeText ()
lineHeightMode: Text.FixedHeight
lineHeight: 12
visible: inverterMode.valid
}
function inverterModeText ()
{
Expand Down Expand Up @@ -100,7 +98,7 @@ MbIcon {
}
}
else
return ""
return "?"
}

Column {
Expand Down
3 changes: 2 additions & 1 deletion FileSets/v2.73/OverviewHubEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,8 @@ OverviewPage {
top: parent.top; topMargin: 3
}
inverterService: root.inverterService
visible: showInverter
opacity: showAcInput ? 1 : disabledTileOpacity
visible: showAcInput || showInactiveTiles
////// add power bar graph
PowerGaugeMulti
{
Expand Down
3 changes: 2 additions & 1 deletion FileSets/v3.01/OverviewFlowComplex.qml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@ OverviewPage {
MultiEnhancedGP {
id: multi
iconId: "overview-inverter-short"
visible: showInverter
opacity: showAcInput ? 1 : disabledTileOpacity
visible: showAcInput || showInactiveTiles
anchors {
horizontalCenter: parent.horizontalCenter
top: acInBox.top
Expand Down
3 changes: 2 additions & 1 deletion FileSets/v3.01/OverviewHubEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ OverviewPage {
horizontalCenter: parent.horizontalCenter
top: parent.top; topMargin: 3
}
visible: showInverter
opacity: showAcInput ? 1 : disabledTileOpacity
visible: showAcInput || showInactiveTiles
inverterService: root.inverterService
////// add power bar graph
PowerGaugeMulti
Expand Down
3 changes: 2 additions & 1 deletion FileSets/v3.40~29/OverviewFlowComplex.qml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@ OverviewPage {
MultiEnhancedGP {
id: multi
iconId: "overview-inverter-short"
visible: showInverter
opacity: showAcInput ? 1 : disabledTileOpacity
visible: showAcInput || showInactiveTiles
anchors {
horizontalCenter: parent.horizontalCenter
top: acInBox.top
Expand Down
3 changes: 2 additions & 1 deletion FileSets/v3.40~29/OverviewHubEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ OverviewPage {
top: parent.top; topMargin: 3
}
inverterService: root.inverterService
visible: showInverter
opacity: showAcInput ? 1 : disabledTileOpacity
visible: showAcInput || showInactiveTiles
////// add power bar graph
PowerGaugeMulti
{
Expand Down
3 changes: 2 additions & 1 deletion FileSets/v3.40~8/OverviewFlowComplex.qml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@ OverviewPage {
MultiEnhancedGP {
id: multi
iconId: "overview-inverter-short"
visible: showInverter
opacity: showAcInput ? 1 : disabledTileOpacity
visible: showAcInput || showInactiveTiles
anchors {
horizontalCenter: parent.horizontalCenter
top: acInBox.top
Expand Down
3 changes: 2 additions & 1 deletion FileSets/v3.40~8/OverviewHubEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ OverviewPage {
top: parent.top; topMargin: 3
}
inverterService: root.inverterService
visible: showInverter
opacity: showAcInput ? 1 : disabledTileOpacity
visible: showAcInput || showInactiveTiles
////// add power bar graph
PowerGaugeMulti
{
Expand Down
3 changes: 3 additions & 0 deletions changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v10.45:
more fixes for missing Multi tile

v10.44:
add support for v3.40~29

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.44
v10.45

0 comments on commit d853cf2

Please sign in to comment.