fixed window title not containing the username on linux

This commit is contained in:
fourtf 2018-06-06 20:11:07 +02:00
parent d2de34914b
commit 7cd2d77524

View file

@ -34,20 +34,20 @@ Window::Window(WindowType _type)
auto app = getApp(); auto app = getApp();
app->accounts->twitch.currentUserChanged.connect([this] { app->accounts->twitch.currentUserChanged.connect([this] {
if (this->userLabel == nullptr) {
return;
}
auto user = getApp()->accounts->twitch.getCurrent(); auto user = getApp()->accounts->twitch.getCurrent();
if (user->isAnon()) { if (user->isAnon()) {
this->refreshWindowTitle("Not logged in"); this->refreshWindowTitle("Not logged in");
this->userLabel->getLabel().setText("anonymous"); if (this->userLabel) {
this->userLabel->getLabel().setText("anonymous");
}
} else { } else {
this->refreshWindowTitle(user->getUserName()); this->refreshWindowTitle(user->getUserName());
this->userLabel->getLabel().setText(user->getUserName()); if (this->userLabel) {
this->userLabel->getLabel().setText(user->getUserName());
}
} }
}); });