11 lines
371 B
Python
11 lines
371 B
Python
from PyQt6.QtWidgets import QLabel
|
|
from PyQt6.QtCore import Qt
|
|
|
|
|
|
class Label(QLabel):
|
|
def __init__(self, text: str):
|
|
super(Label, self).__init__(text)
|
|
self.setTextInteractionFlags(Qt.TextInteractionFlag.TextBrowserInteraction)
|
|
self.setTextInteractionFlags(Qt.TextInteractionFlag.LinksAccessibleByMouse)
|
|
self.setOpenExternalLinks(True)
|