Fix "variables" documentation help in the Filter creation dialog (#2083)

This commit is contained in:
pajlada 2020-10-18 16:14:59 +02:00 committed by GitHub
parent f191de2514
commit 72f44ccdc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,7 @@
## Unversioned ## Unversioned
- Major: Added "Channel Filters". See https://wiki.chatterino.com/Filters/ for how they work or how to configure them. (#1748) - Major: Added "Channel Filters". See https://wiki.chatterino.com/Filters/ for how they work or how to configure them. (#1748, #2083)
- Major: Added Streamer Mode configuration (under `Settings -> General`), where you can select which features of Chatterino should behave differently when you are in Streamer Mode. (#2001) - Major: Added Streamer Mode configuration (under `Settings -> General`), where you can select which features of Chatterino should behave differently when you are in Streamer Mode. (#2001)
- Minor: Improved viewer list window. - Minor: Improved viewer list window.
- Minor: Added emote completion with `:` to the whispers channel (#2075) - Minor: Added emote completion with `:` to the whispers channel (#2075)

View file

@ -30,8 +30,7 @@ ChannelFilterEditorDialog::ChannelFilterEditorDialog(QWidget *parent)
auto helpLabel = auto helpLabel =
new QLabel(QString("<a href='%1'><span " new QLabel(QString("<a href='%1'><span "
"style='color:#99f'>variable help</span></a>") "style='color:#99f'>variable help</span></a>")
.arg("https://github.com/Chatterino/chatterino2/blob/" .arg("https://wiki.chatterino.com/Filters/#variables"));
"master/docs/Filters.md#variables"));
helpLabel->setOpenExternalLinks(true); helpLabel->setOpenExternalLinks(true);
buttonBox->addWidget(helpLabel); buttonBox->addWidget(helpLabel);