Details
-
Bug
-
Resolution: Won't Do
-
P5: Not important
-
None
-
5.3.1
-
None
-
Ubuntu 14.04.1 LTS 64bit. SPecific to Ubuntu, does not happen in Suse or Arch or Windows or OS X
Description
Qt is using a default cursor for Qt::PointingHandCursor instead of the cursor from the system theme on Ubuntu (a small black left hointing hand). TO reproduce, run the following, simple example. Interestingly, this only affects that one cursor, all other cursor types such as arrow, resize, etc are correct.
Also when I try to take a screenshot, the cursor in the screenshot is correct, even though the cursor I can see is wrong.
#include <QApplication> #include <QMainWindow> int main(int argc, char **argv) { QApplication app(argc, argv); QMainWindow *w = new QMainWindow(); w->setCursor(Qt::PointingHandCursor); w->show(); app.exec() }
Attachments
Issue Links
- relates to
-
QTBUG-71423 Unify cursor name lookup handling on linux
- Reported