mirror of
https://github.com/YACReader/yacreader
synced 2025-06-03 09:08:20 -04:00
cambiado el cursor 'oculto' en mac os x, para evitar el artefacto producido por
Qt::BlankCursor
This commit is contained in:
parent
b6efb1a31c
commit
009be709a0
@ -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()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user