Add tooltip to regex configure widget

This commit is contained in:
WarmUpTill 2023-07-23 17:25:21 +02:00 committed by WarmUpTill
parent 884fb1b637
commit 1304ac7336
2 changed files with 3 additions and 0 deletions

View File

@ -1053,6 +1053,7 @@ AdvSceneSwitcher.connection.status.connected="Connected, but not authenticated"
AdvSceneSwitcher.connection.status.authenticated="Connected and authenticated"
AdvSceneSwitcher.regex.enable="Enable regular expressions"
AdvSceneSwitcher.regex.configure="Configure regular expression settings"
AdvSceneSwitcher.regex.partialMatch="Allow partial match"
AdvSceneSwitcher.regex.caseInsensitive="Match case insensitive"
AdvSceneSwitcher.regex.dotMatchNewline=". matches newlines"

View File

@ -66,6 +66,8 @@ RegexConfigWidget::RegexConfigWidget(QWidget *parent, bool showEnable)
_openSettings->setMaximumWidth(22);
SetButtonIcon(_openSettings, ":/settings/images/settings/general.svg");
_openSettings->setFlat(true);
_openSettings->setToolTip(
obs_module_text("AdvSceneSwitcher.regex.configure"));
_enable->setToolTip(obs_module_text("AdvSceneSwitcher.regex.enable"));
_enable->setMaximumWidth(22);