This used to work, I believe. I'd say I was pulling my hair out before figuring this out, but being bald that option went away a while ago...
When saving the g-code, it appears T2 is no longer setting the correct vector rate when using sketch plus to do both raster/vector. I'm trying to engrave, then cut. Here's my steps:
Start T2 (version 1.5a Registered)
Open image
Select Sketch Plus (Overlay)
Set Feed Rates (engraving at 2000, vector at 100, rapid at 2500 as example)
Click Trace Image button
Select to outline
Click trace image again
Click Save G-Code
Save it
open g-code
First section (raster) has:
...
( Image2Gcode for Grbl )
...
( Feed Rate : 2000 )
...
G01 X11.6 Y25.7 M03 S0 F2500
X11.7 M03 S255 F2000
X11.8 Y25.7 M03 S255 F2000
...
Second section (vector) has:
...
( Raster2Vector for Grbl )
...
( Vector Rate : 100 )
...
G01 X9.6 Y25.2 F2500
M03 S0 F2500
X9.5 Y25.2 M03 S255 F2000 <---- This should end in F100, not F2000
X9.4 Y25.7 M03 S255 F2000
...