manuskript/manuskript/ui_qt/statusLabel.py
TheJackiMonster 59662921a7
Started adding UI python code and renamed Qt files for compatibility
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
2021-05-16 20:23:10 +02:00

14 lines
325 B
Python

#!/usr/bin/env python
# --!-- coding: utf8 --!--
from PyQt5.QtWidgets import QLabel, QSizePolicy
class statusLabel(QLabel):
def __init__(self, text=None, parent=None):
QLabel.__init__(self, text=text, parent=parent)
self.setMouseTracking(True)
def mouseMoveEvent(self, event):
self.hide()