mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Fix "variables" documentation help in the Filter creation dialog (#2083)
This commit is contained in:
parent
f191de2514
commit
72f44ccdc3
2 changed files with 2 additions and 3 deletions
|
@ -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)
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue