mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Update HighlightingPage.cpp (#2404)
Co-authored-by: Leon Richardt <leon.richardt@gmail.com> Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
parent
185980f8a2
commit
542022bff3
|
@ -49,6 +49,7 @@
|
|||
- Minor: Made username autocompletion truecase (#1199, #1883)
|
||||
- Minor: Update the listing of top-level domains. (#2345)
|
||||
- Minor: Properly respect RECONNECT messages from Twitch (#2347)
|
||||
- Minor: Hide "Case-sensitive" column for user highlights. (#2404)
|
||||
- Minor: Added human-readable formatting to remaining timeout duration. (#2398)
|
||||
- Minor: Added `/streamlink` command. Usage: `/streamlink <channel>`. You can also use the command without arguments in any twitch channel to open it in streamlink. (#2443)
|
||||
- Bugfix: Fix crash occurring when pressing Escape in the Color Picker Dialog (#1843)
|
||||
|
|
|
@ -99,8 +99,10 @@ HighlightingPage::HighlightingPage()
|
|||
.getElement();
|
||||
|
||||
view->addRegexHelpLink();
|
||||
view->getTableView()->horizontalHeader()->hideSection(4);
|
||||
|
||||
view->getTableView()->horizontalHeader()->hideSection(
|
||||
HighlightModel::Column::UseRegex);
|
||||
view->getTableView()->horizontalHeader()->hideSection(
|
||||
HighlightModel::Column::CaseSensitive);
|
||||
// Case-sensitivity doesn't make sense for user names so it is
|
||||
// set to "false" by default & the column is hidden
|
||||
view->setTitles({"Username", "Show in\nMentions",
|
||||
|
|
Loading…
Reference in a new issue