Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from PyQt6.QtWidgets import QWidget, QGridLayout
- class MediaWindow(QWidget):
- def __init__(self):
- super().__init__(None)
- self.setWindowTitle("Lyricist")
- self.setMinimumSize(300, 400)
- self.setLayout(QGridLayout(self))
- self.layout().setColumnMinimumWidth(0, 220)
- self.layout().setRowMinimumHeight(0, 220)
- class MetadataPanel(QWidget):
- def __init__(self):
- super().__init__()
Advertisement
Add Comment
Please, Sign In to add comment