Merge pull request #4301 from the-wes/master

Update locked-to-screen messages
This commit is contained in:
the-wes
2015-01-01 09:33:59 -08:00

View File

@@ -201,7 +201,7 @@ Server::Server(
// Determine if scroll lock is already set. If so, lock the cursor to the primary screen
if (m_primaryClient->getToggleMask() & KeyModifierScrollLock) {
LOG((CLOG_DEBUG "scroll lock on initially. locked to screen"));
LOG((CLOG_NOTE "Scroll Lock is on, locking cursor to screen"));
m_lockedToScreen = true;
}
@@ -416,7 +416,7 @@ Server::isLockedToScreen() const
{
// locked if we say we're locked
if (isLockedToScreenServer()) {
LOG((CLOG_NOTE "cursor is locked to screen"));
LOG((CLOG_NOTE "Cursor is locked to screen, check Scroll Lock key"));
return true;
}