hideCursorFor method
Hides the cursor if owner currently owns it; ignores the call otherwise.
Implementation
void hideCursorFor(Object owner) {
if (_owner == owner) {
_hideCursor();
_owner = null;
}
}
Hides the cursor if owner currently owns it; ignores the call otherwise.
void hideCursorFor(Object owner) {
if (_owner == owner) {
_hideCursor();
_owner = null;
}
}