If you try resizing or moving the Inset in the following interface, the Graphics becomes incredibly jerky and borderline unusable.
Graphics[{LightGray, Disk[],
Inset[
Graphics[{Rectangle[]}, ImageSize -> 200,
Method -> {"ShrinkWrap" -> True}]]
}]
Now if I remove Method -> {"ShrinkWrap" -> True} the interface (Drawing Tools) works fine but a border is added around the Graphic
Graphics[{LightGray, Disk[],
Inset[
Graphics[{Rectangle[]},
ImageSize -> 200]]
}]
Is there a way to Shrinkwrap or effectively remove the border without destroying the ability to edit Graphics? As an alternative, might there be a way to embed the Inset data directly into the Graphics. Currently it only serves the purpose of adding an ImageSize value to the Inset Graphics.
Rasterize@Graphicsin place ofGraphics. It isn't really a permanent solution but the editor does work without glitching out. – William Aug 15 '13 at 21:23"ShrinkWrap" -> True. Can you please specify you exact system and Mathematica version? This might be important. – halirutan Aug 16 '13 at 01:39ImagePadding -> 0, PlotRangePadding -> 0instead of the method option seems to be a workaround. – Simon Woods Aug 16 '13 at 07:15