소스 검색

Changes cursor when mouse enters ctkSearchBox
clear button.

See http://na-mic.org/Mantis/view.php?id=1347

Christopher Mullins 12 년 전
부모
커밋
48457fad20
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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
     {