mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
BugFix Source init with clones when inactive at creation
This commit is contained in:
@@ -564,7 +564,7 @@ void Source::setActive (bool on)
|
||||
|
||||
// do not disactivate if a clone depends on it
|
||||
for(auto clone = clones_.begin(); clone != clones_.end(); ++clone) {
|
||||
if ( (*clone)->active() )
|
||||
if ( (*clone)->ready() && (*clone)->active() )
|
||||
active_ = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user