Skip to content

Commit

Permalink
Repopulate UserInfoPopup with login (for when opened with id:)
Browse files Browse the repository at this point in the history
Closes #5738
  • Loading branch information
Mm2PL committed Nov 26, 2024
1 parent 2a38e39 commit 0c72f7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
- Bugfix: Fixed incorrect messages getting replaced visually. (#5683)
- Bugfix: Fixed rendering of multi-line selection that starts at a trailing space. (#5691)
- Bugfix: Fixed pause indicator not appearing in certain cases. (#5707)
- Bugfix: Fixed usercards not showing the login name in specific cases. (#5738)
- Dev: Default build with Qt6 on all platforms. (#5716)
- Dev: Update Windows build from Qt 6.5.0 to Qt 6.7.1. (#5420)
- Dev: Update vcpkg build Qt from 6.5.0 to 6.7.0, boost from 1.83.0 to 1.85.0, openssl from 3.1.3 to 3.3.0. (#5422)
Expand Down
2 changes: 2 additions & 0 deletions src/widgets/dialogs/UserInfoPopup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -862,6 +862,8 @@ void UserInfoPopup::updateUserData()
if (this->userName_.isEmpty())
{
this->userName_ = user.login;
this->ui_.nameLabel->setText(user.login);

// Ensure recent messages are shown
this->updateLatestMessages();
}
Expand Down

0 comments on commit 0c72f7f

Please sign in to comment.