From ee588a31c377e553b0522d723dff224ff0a4af72 Mon Sep 17 00:00:00 2001 From: Alan Jeffrey Date: Fri, 28 Oct 2016 15:46:34 -0500 Subject: [PATCH] Don't create frame when creating pipeline. --- components/constellation/constellation.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs index c854a48b618..0c628cc523b 100644 --- a/components/constellation/constellation.rs +++ b/components/constellation/constellation.rs @@ -610,10 +610,6 @@ impl Constellation assert!(!self.pipelines.contains_key(&pipeline_id)); self.pipelines.insert(pipeline_id, pipeline); - - if !self.frames.contains_key(&frame_id) { - self.new_frame(frame_id, pipeline_id); - } } // Get an iterator for the current frame tree. Specify self.root_frame_id to