mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-21 17:53:23 +02:00
Fix regression in 2.0 that broke viewing of LRF format ebooks. Fixes #1360332 [Impossible to read a lrf document](https://bugs.launchpad.net/calibre/+bug/1360332)
This commit is contained in:
parent
ad45dc35c8
commit
fc3626aca2
1 changed files with 1 additions and 1 deletions
|
|
@ -327,7 +327,7 @@ def __init__(self, parent, start, stop, refobj, slot):
|
|||
self.brush = self.__class__.inactive_brush
|
||||
self.setPen(QPen(Qt.NoPen))
|
||||
self.setCursor(Qt.PointingHandCursor)
|
||||
self.setAcceptsHoverEvents(True)
|
||||
self.setAcceptHoverEvents(True)
|
||||
|
||||
def hoverEnterEvent(self, event):
|
||||
self.brush = self.__class__.active_brush
|
||||
|
|
|
|||
Loading…
Reference in a new issue