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
When strokeScaleEnabled is set to false for Line object, the mouseover and mouseout event failed to fire. May be the hit region's strokeScaleEnabled did not set to false.
I am using FireFox 22.0. If mouse passes over the red line, the mouse pointer does not change. If mouse passes over the green line, the mouser pointer changes from arrow to finger pointer. Same issue exits for 4.4.3.
Example
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.5.4.min.js"></script>
<script defer="defer">
var scale = 0.1;
This fix involves copying some logic from Kinetic.SceneContext._stroke() to Kinetic.HitContext._stroke(). This fix resolves the immediate issues I'm having today -- I haven't tested other scenarios.
When strokeScaleEnabled is set to false for Line object, the mouseover and mouseout event failed to fire. May be the hit region's strokeScaleEnabled did not set to false.
I am using FireFox 22.0. If mouse passes over the red line, the mouse pointer does not change. If mouse passes over the green line, the mouser pointer changes from arrow to finger pointer. Same issue exits for 4.4.3.
Example
<style> body { margin: 0px; padding: 0px; } </style> <script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.5.4.min.js"></script> <script defer="defer"> var scale = 0.1;The text was updated successfully, but these errors were encountered: