mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-07-02 08:31:57 -05:00
Move recording tips to HelpIcons
This commit is contained in:
parent
42b13c1929
commit
d8cdb04ebd
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -67,8 +67,8 @@ private slots:
|
|||
|
||||
protected:
|
||||
QComboBox *_actions;
|
||||
QLabel *_pauseHint;
|
||||
QLabel *_splitHint;
|
||||
HelpIcon *_pauseHint;
|
||||
HelpIcon *_splitHint;
|
||||
FileSelection *_recordFolder;
|
||||
VariableLineEdit *_recordFileFormat;
|
||||
HelpIcon *_outputNotActiveHelp;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user