cambiado el cursor 'oculto' en mac os x, para evitar el artefacto producido por

Qt::BlankCursor
This commit is contained in:
Luis Ángel San Martín 2012-07-14 10:38:54 +02:00
parent b6efb1a31c
commit 009be709a0

View File

@ -594,7 +594,11 @@ void Viewer::configureContent(QString msg)
void Viewer::hideCursor()
{
#ifdef Q_WS_MAC
setCursor(Qt::CrossCursor);
#else
setCursor(Qt::BlankCursor);
#endif
}
void Viewer::showCursor()
{