Skip to content

Commit

Permalink
Merge pull request #4818 from nextcloud/bugfix/qml-warnings
Browse files Browse the repository at this point in the history
Fix QML warnings
  • Loading branch information
claucambra authored Aug 9, 2022
2 parents d2f2b8f + 0a89bf2 commit ad7a72a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/tray/Window.qml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Window {
hide();
Systray.isOpen = false;
}
}
}

onClosing: Systray.isOpen = false

Expand All @@ -55,7 +55,7 @@ Window {

Connections {
target: UserModel
function onNewUserSelected() {
function onCurrentUserChanged() {
accountMenu.close();
syncStatus.model.load();
}
Expand Down Expand Up @@ -612,7 +612,7 @@ Window {
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff

data: WheelHandler {
target: appMenuScrollView.contentItem
target: appsMenuScrollView.contentItem
}
ListView {
id: appsMenuListView
Expand Down

0 comments on commit ad7a72a

Please sign in to comment.