mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-20 00:05:41 -05:00
Add scenes to possible selection of "Source" condition type
It might be useful to check if a given scene is visible outside of it being the currently active scene, as scenes can also be used as sources within other scenes.
This commit is contained in:
@@ -107,7 +107,9 @@ MacroConditionSourceEdit::MacroConditionSourceEdit(
|
||||
populateConditionSelection(_conditions);
|
||||
auto sources = GetSourceNames();
|
||||
sources.sort();
|
||||
_sources->SetSourceNameList(sources);
|
||||
auto scenes = GetSceneNames();
|
||||
scenes.sort();
|
||||
_sources->SetSourceNameList(sources + scenes);
|
||||
|
||||
QWidget::connect(_sources,
|
||||
SIGNAL(SourceChanged(const SourceSelection &)), this,
|
||||
|
||||
Reference in New Issue
Block a user