mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -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()
|
void Viewer::hideCursor()
|
||||||
{
|
{
|
||||||
|
#ifdef Q_WS_MAC
|
||||||
|
setCursor(Qt::CrossCursor);
|
||||||
|
#else
|
||||||
setCursor(Qt::BlankCursor);
|
setCursor(Qt::BlankCursor);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
void Viewer::showCursor()
|
void Viewer::showCursor()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user