We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
点击最大化按钮后鼠标点击标题栏拖动窗口,窗户不会恢复正常,仍保持最大化.
Windows24H2
Python3.9.12
PySide6 6.8.1.1
PySide6-Fluent-Widgets 1.7.4
# coding: utf-8 import sys from PySide6.QtWidgets import QApplication from qfluentwidgets.components.widgets.frameless_window import FramelessWindow class MainWindow(FramelessWindow): def __init__(self): super().__init__() self.setWindowTitle("拖动检测示例") self.resize(300, 400) if __name__ == "__main__": app = QApplication(sys.argv) w = MainWindow() w.show() app.exec()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
点击最大化按钮后鼠标点击标题栏拖动窗口,窗户不会恢复正常,仍保持最大化.
Operation System
Windows24H2
Python Version
Python3.9.12
PyQt/PySide Version
PySide6 6.8.1.1
PyQt/PySide-Fluent-Widgets Version
PySide6-Fluent-Widgets 1.7.4
How to Reproduce?
Minimum code
The text was updated successfully, but these errors were encountered: