File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
node-graph/gcore/src/graphic_element Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -359,6 +359,7 @@ impl GraphicElementRendered for GraphicGroupTable {
359359 click_target. apply_transform ( * instance. transform )
360360 }
361361
362+ log:: debug!( "new_click_targets for {graphic_group_id:?}: {new_click_targets:?}" ) ;
362363 all_upstream_click_targets. extend ( new_click_targets) ;
363364 }
364365
@@ -525,8 +526,11 @@ impl GraphicElementRendered for VectorDataTable {
525526 }
526527 subpath
527528 } ;
528-
529- click_targets. extend ( instance. instance . stroke_bezier_paths ( ) . map ( fill) . map ( |subpath| ClickTarget :: new ( subpath, stroke_width) ) ) ;
529+ click_targets. extend ( instance. instance . stroke_bezier_paths ( ) . map ( fill) . map ( |subpath| {
530+ let mut click_target = ClickTarget :: new ( subpath, stroke_width) ;
531+ click_target. apply_transform ( * instance. transform ) ;
532+ click_target
533+ } ) ) ;
530534 }
531535 }
532536
You can’t perform that action at this time.
0 commit comments