mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
aef8a2773c
commit
086f16714f
@ -12,7 +12,8 @@ from collections import OrderedDict
|
|||||||
from PyQt5.Qt import (
|
from PyQt5.Qt import (
|
||||||
Qt, QIcon, QFont, QWidget, QScrollArea, QStackedWidget, QVBoxLayout,
|
Qt, QIcon, QFont, QWidget, QScrollArea, QStackedWidget, QVBoxLayout,
|
||||||
QLabel, QFrame, QToolBar, QSize, pyqtSignal, QPixmap, QDialogButtonBox,
|
QLabel, QFrame, QToolBar, QSize, pyqtSignal, QPixmap, QDialogButtonBox,
|
||||||
QHBoxLayout, QDialog, QSizePolicy, QPainter, QTextLayout, QPointF)
|
QHBoxLayout, QDialog, QSizePolicy, QPainter, QTextLayout, QPointF,
|
||||||
|
QStatusTipEvent)
|
||||||
|
|
||||||
from calibre.constants import __appname__, __version__, islinux
|
from calibre.constants import __appname__, __version__, islinux
|
||||||
from calibre.gui2 import (gprefs, min_available_height, available_width,
|
from calibre.gui2 import (gprefs, min_available_height, available_width,
|
||||||
@ -262,7 +263,7 @@ class Preferences(QDialog):
|
|||||||
self.hide_plugin()
|
self.hide_plugin()
|
||||||
|
|
||||||
def event(self, ev):
|
def event(self, ev):
|
||||||
if ev.type() == ev.StatusTip:
|
if isinstance(ev, QStatusTipEvent):
|
||||||
msg = re.sub(r'</?[a-z1-6]+>', ' ', ev.tip())
|
msg = re.sub(r'</?[a-z1-6]+>', ' ', ev.tip())
|
||||||
self.title_bar.show_msg(msg)
|
self.title_bar.show_msg(msg)
|
||||||
return QDialog.event(self, ev)
|
return QDialog.event(self, ev)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user