17 lines
592 B
Python
Executable file
17 lines
592 B
Python
Executable file
from PyQt6.QtWidgets import QWidget, QVBoxLayout, QLabel
|
|
from PyQt6.QtCore import Qt
|
|
|
|
|
|
class BlankPage(QWidget):
|
|
def __init__(self, page_stack, custom_window, parent=None):
|
|
super().__init__(parent)
|
|
self.page_stack = page_stack
|
|
self.custom_window = custom_window
|
|
|
|
layout = QVBoxLayout(self)
|
|
layout.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
|
|
|
label = QLabel("v2 — no page migrated yet")
|
|
label.setStyleSheet("color: #888888; font-size: 14px;")
|
|
label.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
|
layout.addWidget(label)
|