Browse Source

Merge pull request #300 from chrismullins/update-cursor-in-searchbox-clear-button

Changes cursor when mouse enters ctkSearchBox
Julien Finet 12 years ago
parent
commit
4e6ac62e20
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Libs/Widgets/ctkSearchBox.cpp

+ 1 - 1
Libs/Widgets/ctkSearchBox.cpp

@@ -318,7 +318,7 @@ void ctkSearchBox::mouseMoveEvent(QMouseEvent *e)
   if(d->clearRect().contains(e->pos()) ||
      (d->showSearchIcon && d->searchRect().contains(e->pos())))
     {
-    this->setCursor(Qt::ArrowCursor);
+    this->setCursor(Qt::PointingHandCursor);
     }
   else
     {