We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e0575 commit ee586beCopy full SHA for ee586be
1 file changed
editor/src/node_graph_executor/runtime.rs
@@ -153,7 +153,14 @@ impl NodeRuntime {
153
for request in self.receiver.try_iter() {
154
match request {
155
GraphRuntimeRequest::GraphUpdate(_) => graph = Some(request),
156
- GraphRuntimeRequest::ExecutionRequest(_) => execution = Some(request),
+ GraphRuntimeRequest::ExecutionRequest(ref execution_request) => {
157
+ let for_export = execution_request.render_config.for_export;
158
+ execution = Some(request);
159
+ // If we get an export request we always execute it immedeatly otherwise it could get deduplicated
160
+ if for_export {
161
+ break;
162
+ }
163
164
GraphRuntimeRequest::FontCacheUpdate(_) => font = Some(request),
165
GraphRuntimeRequest::EditorPreferencesUpdate(_) => preferences = Some(request),
166
}
0 commit comments