1
0
Fork 0
mirror of synced 2024-06-02 10:44:40 +12:00
Rare/Rare/Components/Tabs/Settings/Linux.py
2021-02-19 12:57:55 +01:00

13 lines
343 B
Python

from PyQt5.QtWidgets import QWidget, QVBoxLayout, QLabel
class LinuxSettings(QWidget):
def __init__(self):
super(LinuxSettings, self).__init__()
self.layout = QVBoxLayout()
self.title = QLabel("<h2>Linux settings (Wine, dxvk)</h2>")
self.layout.addWidget(self.title)
self.setLayout(self.layout)