mirror of
https://github.com/YACReader/yacreader
synced 2025-07-23 07:24:58 -04:00
cambiado el cursor 'oculto' en mac os x, para evitar el artefacto producido por
Qt::BlankCursor
This commit is contained in:
@ -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()
|
||||
{
|
||||
|
Reference in New Issue
Block a user