You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Currently for Wasm, this is implemented through SVG rendering but the Eyedropper tool doesn't work at all when Vello is enabled as the renderer
Copy file name to clipboardExpand all lines: editor/src/node_graph_executor.rs
+13-2Lines changed: 13 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,6 @@ impl NodeGraphExecutor {
185
185
}
186
186
187
187
#[allow(clippy::too_many_arguments)]
188
-
#[cfg(not(target_family = "wasm"))]
189
188
pub(crate)fnsubmit_eyedropper_preview(
190
189
&mutself,
191
190
document:&DocumentMessageHandler,
@@ -201,13 +200,25 @@ impl NodeGraphExecutor {
201
200
resolution: viewport_resolution,
202
201
..Default::default()
203
202
};
203
+
204
+
// TODO: On desktop, SVG Preview mode cannot work with the Eyedropper tool until <https://github.com/GraphiteEditor/Graphite/issues/3796> is implemented.
205
+
// TODO: So for now, we fall back to the Eyedropper using Normal mode (Vello) rendering, which looks similar enough to SVG Preview.
0 commit comments