-
-
Notifications
You must be signed in to change notification settings - Fork 78
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Environment
- OS:Manjaro Linux 6.9.12-1-MANJARO X11 (KDE Plasma 6.0.5)
- DPI scaling: 100%
- Python: 3.11.9 64-bit
- PySide6: 6.7.2
Code
# Minimum code to reproduce the error
from PySide6.QtWidgets import QApplication
from qfluentwidgets.components.widgets.frameless_window import FramelessWindow
class MainWindow(FramelessWindow):
def __init__(self, parent=None):
super().__init__(parent)
self.setMinimumSize(800, 600)
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
w = MainWindow()
w.show()
sys.exit(app.exec())
Expected behavior
窗口应该被正常地调整大小
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working