Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Streamlink documentation #5076

Merged
merged 14 commits into from
Jan 12, 2024
6 changes: 6 additions & 0 deletions src/widgets/settingspages/ExternalToolsPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ ExternalToolsPage::ExternalToolsPage()
getSettings()->streamlinkUseCustomPath);
groupLayout->setWidget(2, QFormLayout::SpanningRole, customPathCb);

auto note =
fraxxio marked this conversation as resolved.
Show resolved Hide resolved
new QLabel("The custom path may not need the file extension.");
note->setWordWrap(true);
note->setStyleSheet("color: #bbb");
groupLayout->setWidget(3, QFormLayout::SpanningRole, note);
fraxxio marked this conversation as resolved.
Show resolved Hide resolved

auto customPath = this->createLineEdit(getSettings()->streamlinkPath);
customPath->setPlaceholderText(
"Path to folder where Streamlink executable can be found");
Expand Down
Loading