mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 04:23:33 +02:00
Merge pull request #10144 from howard-stearns/notice-login-change-in-pal
notice login/logout change in pal
This commit is contained in:
commit
46a7d28e16
1 changed files with 7 additions and 0 deletions
|
@ -52,6 +52,13 @@ Rectangle {
|
||||||
id: letterboxMessage;
|
id: letterboxMessage;
|
||||||
z: 999; // Force the popup on top of everything else
|
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
|
// The ComboDialog used for setting availability
|
||||||
ComboDialog {
|
ComboDialog {
|
||||||
id: comboDialog;
|
id: comboDialog;
|
||||||
|
|
Loading…
Reference in a new issue