1
0
Fork 0
mirror of synced 2024-06-26 18:20:50 +12:00
Rare/Rare/Components/Tabs/Settings/About.py

12 lines
317 B
Python
Raw Normal View History

2021-02-20 00:57:55 +13:00
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QFormLayout, QLabel
class About(QWidget):
def __init__(self):
super(About, self).__init__()
self.layout = QVBoxLayout()
self.title = QLabel("<h2>About</h2>")
self.layout.addWidget(self.title)
self.setLayout(self.layout)