From 72f44ccdc375c76d2b14bf216a985addcff2845b Mon Sep 17 00:00:00 2001 From: pajlada Date: Sun, 18 Oct 2020 16:14:59 +0200 Subject: [PATCH] Fix "variables" documentation help in the Filter creation dialog (#2083) --- CHANGELOG.md | 2 +- src/widgets/dialogs/ChannelFilterEditorDialog.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 487893f32..216656954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 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) - Minor: Improved viewer list window. - Minor: Added emote completion with `:` to the whispers channel (#2075) diff --git a/src/widgets/dialogs/ChannelFilterEditorDialog.cpp b/src/widgets/dialogs/ChannelFilterEditorDialog.cpp index 98a1efbe9..a21b5ee9d 100644 --- a/src/widgets/dialogs/ChannelFilterEditorDialog.cpp +++ b/src/widgets/dialogs/ChannelFilterEditorDialog.cpp @@ -30,8 +30,7 @@ ChannelFilterEditorDialog::ChannelFilterEditorDialog(QWidget *parent) auto helpLabel = new QLabel(QString("variable help") - .arg("https://github.com/Chatterino/chatterino2/blob/" - "master/docs/Filters.md#variables")); + .arg("https://wiki.chatterino.com/Filters/#variables")); helpLabel->setOpenExternalLinks(true); buttonBox->addWidget(helpLabel);