Browse Source

Cleanup clickablelabel.py

tags/v0.9.0
falkTX 14 years ago
parent
commit
34fe9743dd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/clickablelabel.py

+ 1
- 1
src/clickablelabel.py View File

@@ -31,7 +31,7 @@ class ClickableLabel(QLabel):
self.emit(SIGNAL("clicked()"))
# Use busy cursor for 2 secs
self.setCursor(Qt.WaitCursor)
QTimer.singleShot(2000, SLOT("slot_setNormalCursor()"))
QTimer.singleShot(2000, self, SLOT("slot_setNormalCursor()"))
QLabel.mousePressEvent(self, event)

@pyqtSlot()


Loading…
Cancel
Save