corrected inconsistent log messages

This commit is contained in:
Nick Bolton 2012-07-29 00:25:04 +00:00
parent 2307b7a40a
commit 4d4eecdb5a
1 changed files with 1 additions and 2 deletions

View File

@ -1778,12 +1778,11 @@ COSXScreen::handleCGInputEventSecondary(CGEventTapProxy proxy,
} }
} }
if (showCursor) { if (showCursor) {
LOG((CLOG_DEBUG "Trying to show cursor from local event. (type = %d)", type)); LOG((CLOG_DEBUG "show cursor, event type %d", type));
screen->showCursor(); screen->showCursor();
screen->m_cursorHidden = false; screen->m_cursorHidden = false;
} }
} }
LOG((CLOG_DEBUG2 "Local event? (type = %d)", type));
return event; return event;
} }