mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-08-24 10:14:13 -05:00
UI: Add stream key tooltip in the auto-config wizard
This commit is contained in:
@@ -731,9 +731,24 @@ void AutoConfigStreamPage::UpdateKeyLink()
|
||||
if (serviceName == "Dacast") {
|
||||
ui->streamKeyLabel->setText(
|
||||
QTStr("Basic.AutoConfig.StreamPage.EncoderKey"));
|
||||
} else {
|
||||
ui->streamKeyLabel->setToolTip("");
|
||||
} else if (!IsCustomService()) {
|
||||
ui->streamKeyLabel->setText(
|
||||
QTStr("Basic.AutoConfig.StreamPage.StreamKey"));
|
||||
ui->streamKeyLabel->setToolTip("");
|
||||
} else {
|
||||
/* add tooltips for stream key */
|
||||
QString file = !App()->IsThemeDark()
|
||||
? ":/res/images/help.svg"
|
||||
: ":/res/images/help_light.svg";
|
||||
QString lStr = "<html>%1 <img src='%2' style=' \
|
||||
vertical-align: bottom; \
|
||||
' /></html>";
|
||||
|
||||
ui->streamKeyLabel->setText(lStr.arg(
|
||||
QTStr("Basic.AutoConfig.StreamPage.StreamKey"), file));
|
||||
ui->streamKeyLabel->setToolTip(
|
||||
QTStr("Basic.AutoConfig.StreamPage.StreamKey.ToolTip"));
|
||||
}
|
||||
|
||||
if (QString(streamKeyLink).isNull() ||
|
||||
|
||||
Reference in New Issue
Block a user