Closed gonfunko closed 2 months ago
This PR removes a redundant call to Flyout.position() in WorkspaceSvg. The code calls Toolbox.position() on the previous line, which in turn calls Flyout.position(), so the flyout was needlessly being positioned twice.
Flyout.position()
WorkspaceSvg
Toolbox.position()
The basics
The details
This PR removes a redundant call to
Flyout.position()
inWorkspaceSvg
. The code callsToolbox.position()
on the previous line, which in turn callsFlyout.position()
, so the flyout was needlessly being positioned twice.