Merge pull request #10144 from howard-stearns/notice-login-change-in-pal

notice login/logout change in pal
This commit is contained in:
David Kelly 2017-04-06 12:57:22 -07:00 committed by GitHub
commit 46a7d28e16

View file

@ -52,6 +52,13 @@ Rectangle {
id: letterboxMessage;
z: 999; // Force the popup on top of everything else
}
Connections {
target: GlobalServices
onMyUsernameChanged: {
myData.userName = Account.username;
myDataChanged(); // Setting a property within an object isn't enough to update dependencies. This will do it.
}
}
// The ComboDialog used for setting availability
ComboDialog {
id: comboDialog;