@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
- Minor: Disable checking for updates on unsupported platforms (#1874)
|
- Minor: Disable checking for updates on unsupported platforms (#1874)
|
||||||
- Bugfix: Fix bug preventing users from setting the highlight color of the second entry in the "User" highlights tab (#1898)
|
- Bugfix: Fix bug preventing users from setting the highlight color of the second entry in the "User" highlights tab (#1898)
|
||||||
|
- Bugfix: /usercard command will now respect the "Automatically close user popup" setting (#1918)
|
||||||
|
|
||||||
## 2.2.0
|
## 2.2.0
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ YungLPR | https://github.com/leon-richardt | | Contributor
|
|||||||
Mm2PL | https://github.com/mm2pl | | Contributor
|
Mm2PL | https://github.com/mm2pl | | Contributor
|
||||||
gempir | https://github.com/gempir | | Contributor
|
gempir | https://github.com/gempir | | Contributor
|
||||||
mfmarlow | https://github.com/mfmarlow | | Contributor
|
mfmarlow | https://github.com/mfmarlow | | Contributor
|
||||||
|
dnsge | https://github.com/dnsge | | Contributor
|
||||||
# If you are a contributor add yourself above this line
|
# If you are a contributor add yourself above this line
|
||||||
|
|
||||||
Defman21 | https://github.com/Defman21 | | Documentation
|
Defman21 | https://github.com/Defman21 | | Documentation
|
||||||
|
|||||||
@@ -451,7 +451,9 @@ QString CommandController::execCommand(const QString &textNoEmoji,
|
|||||||
makeSystemMessage("Usage /usercard [user]"));
|
makeSystemMessage("Usage /usercard [user]"));
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
auto *userPopup = new UserInfoPopup(false);
|
|
||||||
|
auto *userPopup =
|
||||||
|
new UserInfoPopup(getSettings()->autoCloseUserPopup);
|
||||||
userPopup->setData(words[1], channel);
|
userPopup->setData(words[1], channel);
|
||||||
userPopup->move(QCursor::pos());
|
userPopup->move(QCursor::pos());
|
||||||
userPopup->show();
|
userPopup->show();
|
||||||
|
|||||||
Reference in New Issue
Block a user