notice login/logout change in pal

This commit is contained in:
howard-stearns 2017-04-06 11:20:08 -07:00
parent be2fdd9388
commit 1d60a55d5f

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;