Move recording tips to HelpIcons

This commit is contained in:
WarmUpTill 2026-06-28 22:22:12 +02:00
parent 42b13c1929
commit d8cdb04ebd
2 changed files with 10 additions and 6 deletions

View File

@ -165,10 +165,14 @@ MacroActionRecordEdit::MacroActionRecordEdit(
QWidget *parent, std::shared_ptr<MacroActionRecord> entryData)
: QWidget(parent),
_actions(new QComboBox()),
_pauseHint(new QLabel(obs_module_text(
"AdvSceneSwitcher.action.recording.pause.hint"))),
_splitHint(new QLabel(obs_module_text(
"AdvSceneSwitcher.action.recording.split.hint"))),
_pauseHint(new HelpIcon(
obs_module_text(
"AdvSceneSwitcher.action.recording.pause.hint"),
this)),
_splitHint(new HelpIcon(
obs_module_text(
"AdvSceneSwitcher.action.recording.split.hint"),
this)),
_recordFolder(new FileSelection(FileSelection::Type::FOLDER, this)),
_recordFileFormat(new VariableLineEdit(this)),
_outputNotActiveHelp(new HelpIcon(

View File

@ -67,8 +67,8 @@ private slots:
protected:
QComboBox *_actions;
QLabel *_pauseHint;
QLabel *_splitHint;
HelpIcon *_pauseHint;
HelpIcon *_splitHint;
FileSelection *_recordFolder;
VariableLineEdit *_recordFileFormat;
HelpIcon *_outputNotActiveHelp;