Remove trailing whitespace from Usernames in User Highlights (#4051)

This commit is contained in:
Felanbird 2022-10-06 18:42:41 -04:00 committed by GitHub
parent 874ef64216
commit 7f93885518
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -30,7 +30,6 @@
- Minor: Added information about the user's operating system in the About page. (#3663) - Minor: Added information about the user's operating system in the About page. (#3663)
- Minor: Adjusted large stream thumbnail to 16:9 (#3655) - Minor: Adjusted large stream thumbnail to 16:9 (#3655)
- Minor: Prevented user from entering incorrect characters in Live Notifications channels list. (#3715, #3730) - 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: 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: 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) - 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: Fixed emoji popup not being shown in IRC channels (#4021)
- Bugfix: Display sent IRC messages like received ones (#4027) - Bugfix: Display sent IRC messages like received ones (#4027)
- Bugfix: Fixed non-global FrankerFaceZ emotes from being loaded as global emotes. (#3921) - 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: Removed official support for QMake. (#3839, #3883)
- Dev: Rewrote LimitedQueue (#3798) - Dev: Rewrote LimitedQueue (#3798)
- Dev: Overhauled highlight system by moving all checks into a Controller allowing for easier tests. (#3399, #3801, #3835) - Dev: Overhauled highlight system by moving all checks into a Controller allowing for easier tests. (#3399, #3801, #3835)

View file

@ -26,7 +26,7 @@ HighlightPhrase UserHighlightModel::getItemFromRow(
row[Column::Color]->data(Qt::DecorationRole).value<QColor>(); row[Column::Color]->data(Qt::DecorationRole).value<QColor>();
return HighlightPhrase{ 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::ShowInMentions]->data(Qt::CheckStateRole).toBool(),
row[Column::FlashTaskbar]->data(Qt::CheckStateRole).toBool(), row[Column::FlashTaskbar]->data(Qt::CheckStateRole).toBool(),
row[Column::PlaySound]->data(Qt::CheckStateRole).toBool(), row[Column::PlaySound]->data(Qt::CheckStateRole).toBool(),