mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Remove trailing whitespace from Usernames in User Highlights (#4051)
This commit is contained in:
parent
874ef64216
commit
7f93885518
|
@ -30,7 +30,6 @@
|
|||
- Minor: Added information about the user's operating system in the About page. (#3663)
|
||||
- Minor: Adjusted large stream thumbnail to 16:9 (#3655)
|
||||
- Minor: Prevented user from entering incorrect characters in Live Notifications channels list. (#3715, #3730)
|
||||
- Minor: Added whitespace trim to username field in nicknames (#3946)
|
||||
- Minor: Sorted usernames in /vips message to be case-insensitive. (#3696)
|
||||
- Minor: Streamer mode now automatically detects if XSplit, PRISM Live Studio, Twitch Studio, or vMix are running. (#3740)
|
||||
- Minor: Fixed automod caught message notice appearing twice for mods. (#3717)
|
||||
|
@ -86,6 +85,8 @@
|
|||
- Bugfix: Fixed emoji popup not being shown in IRC channels (#4021)
|
||||
- Bugfix: Display sent IRC messages like received ones (#4027)
|
||||
- Bugfix: Fixed non-global FrankerFaceZ emotes from being loaded as global emotes. (#3921)
|
||||
- Bugfix: Fixed trailing spaces from preventing Nicknames from working correctly. (#3946)
|
||||
- Bugfix: Fixed trailing spaces from preventing User Highlights from working correctly. (#4051)
|
||||
- Dev: Removed official support for QMake. (#3839, #3883)
|
||||
- Dev: Rewrote LimitedQueue (#3798)
|
||||
- Dev: Overhauled highlight system by moving all checks into a Controller allowing for easier tests. (#3399, #3801, #3835)
|
||||
|
|
|
@ -26,7 +26,7 @@ HighlightPhrase UserHighlightModel::getItemFromRow(
|
|||
row[Column::Color]->data(Qt::DecorationRole).value<QColor>();
|
||||
|
||||
return HighlightPhrase{
|
||||
row[Column::Pattern]->data(Qt::DisplayRole).toString(),
|
||||
row[Column::Pattern]->data(Qt::DisplayRole).toString().trimmed(),
|
||||
row[Column::ShowInMentions]->data(Qt::CheckStateRole).toBool(),
|
||||
row[Column::FlashTaskbar]->data(Qt::CheckStateRole).toBool(),
|
||||
row[Column::PlaySound]->data(Qt::CheckStateRole).toBool(),
|
||||
|
|
Loading…
Reference in a new issue