Issue #1362 add null chack in nsharp mouse handler.

Former-commit-id: b6e5e160ea [formerly b05bf7b6e2] [formerly 1186724fa8] [formerly b6e5e160ea [formerly b05bf7b6e2] [formerly 1186724fa8] [formerly a836aee481 [formerly 1186724fa8 [formerly 4ae38765c9a6815050d30b307b4a364b617c49aa]]]]
Former-commit-id: a836aee481
Former-commit-id: d51e288baf [formerly a8b4746176] [formerly c5f3635a2e57e9b55fb0c57ae387ac93fbacbe48 [formerly 3a4661685a]]
Former-commit-id: 6388e67bc1b8b207cd9477a9646d2c61acb3f856 [formerly 8fb09ab2cb]
Former-commit-id: 1b9a9383c1
This commit is contained in:
Ben Steffensmeier 2013-01-08 18:17:24 -06:00
parent 029ccb6269
commit f844921a9f

View file

@ -368,7 +368,9 @@ public class NsharpSkewTPaneMouseHandler extends NsharpAbstractMouseHandler{
//System.out.println("skewtRsc handleMouseExit");
cursorInPane=false;
NsharpSkewTPaneResource skewRsc = (NsharpSkewTPaneResource)getDescriptor().getPaneResource();
skewRsc.setCursorInSkewT(false);
if (skewRsc != null) {
skewRsc.setCursorInSkewT(false);
}
return false;
}
public void disposeCursor(){