Skip to content

Commit

Permalink
chore: post merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nethius committed Jan 2, 2025
1 parent cda9b5d commit 694b789
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions client/ui/qml/Components/ChangelogDrawer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ DrawerType2 {
anchors.fill: parent
expandedHeight: parent.height * 0.9

expandedContent: Item {
expandedStateContent: Item {
implicitHeight: root.expandedHeight

Header2TextType {
Expand Down Expand Up @@ -73,7 +73,7 @@ DrawerType2 {
PageController.showBusyIndicator(true)
UpdateController.runInstaller()
PageController.showBusyIndicator(false)
root.close()
root.closeTriggered()
}
}

Expand All @@ -96,7 +96,7 @@ DrawerType2 {
text: qsTr("Skip")

clickedFunc: function() {
root.close()
root.closeTriggered()
}
}
}
Expand Down
1 change: 0 additions & 1 deletion client/ui/qml/Controls2/PageType.qml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Item {
id: timer
interval: 200 // Milliseconds
onTriggered: {
console.debug(">>> PageType timer triggered")
FocusController.resetRootObject()
FocusController.setFocusOnDefaultItem()
}
Expand Down
2 changes: 1 addition & 1 deletion client/ui/qml/main2.qml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Window {
}

function onShowChangelogDrawer() {
changelogDrawer.open()
changelogDrawer.openTriggered()
}
}

Expand Down

0 comments on commit 694b789

Please sign in to comment.