mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
Merge pull request #4818 from nextcloud/bugfix/qml-warnings
Fix QML warnings
This commit is contained in:
commit
ad7a72a5d7
1 changed files with 3 additions and 3 deletions
|
@ -41,7 +41,7 @@ Window {
|
||||||
hide();
|
hide();
|
||||||
Systray.isOpen = false;
|
Systray.isOpen = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onClosing: Systray.isOpen = false
|
onClosing: Systray.isOpen = false
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ Window {
|
||||||
|
|
||||||
Connections {
|
Connections {
|
||||||
target: UserModel
|
target: UserModel
|
||||||
function onNewUserSelected() {
|
function onCurrentUserChanged() {
|
||||||
accountMenu.close();
|
accountMenu.close();
|
||||||
syncStatus.model.load();
|
syncStatus.model.load();
|
||||||
}
|
}
|
||||||
|
@ -612,7 +612,7 @@ Window {
|
||||||
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
||||||
|
|
||||||
data: WheelHandler {
|
data: WheelHandler {
|
||||||
target: appMenuScrollView.contentItem
|
target: appsMenuScrollView.contentItem
|
||||||
}
|
}
|
||||||
ListView {
|
ListView {
|
||||||
id: appsMenuListView
|
id: appsMenuListView
|
||||||
|
|
Loading…
Reference in a new issue